-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathHashTables.java
42 lines (33 loc) · 977 Bytes
/
HashTables.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package algorithms;
import java.util.*;
/**
* Simple HashTable operations.
*
* @author joeytawadrous
*/
public class HashTables
{
public static void main(String args[])
{
// Create a hash map
Hashtable<String, Double> balance = new Hashtable<String, Double>();
Enumeration<String> names;
String str;
double bal;
balance.put("Zara", new Double(3434.34));
balance.put("Ayan", new Double(1378.00));
balance.put("Paud", new Double(-19.08));
// Show all balances in hash table.
names = balance.keys();
while(names.hasMoreElements())
{
str = names.nextElement();
System.out.println(str + ": " + balance.get(str));
}
System.out.println();
// Deposit 1,000 into Zara's account
bal = balance.get("Zara");
balance.put("Zara", new Double(bal+1000));
System.out.println("Zara's new balance: " + balance.get("Zara"));
}
}