Skip to content

Commit 3f03049

Browse files
committed
Added Associative Collection practice programmes
1 parent 2dc8446 commit 3f03049

File tree

6 files changed

+136
-0
lines changed

6 files changed

+136
-0
lines changed
2.95 KB
Binary file not shown.
2.15 KB
Binary file not shown.
1.99 KB
Binary file not shown.
+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
package associativeCollection;
2+
3+
import java.util.Arrays;
4+
import java.util.Iterator;
5+
import java.util.Map.Entry;
6+
import java.util.Set;
7+
import java.util.TreeMap;
8+
9+
public class Exercise {
10+
11+
public static void main(String[] args) {
12+
13+
String text = "Either the well was very deep or she fell very slowly "
14+
+ "for she had plenty of time as she went down to look about "
15+
+ "her and to what was going to happen next First "
16+
+ "she tried to look down and make out what she was coming to "
17+
+ "but it was too dark to see anything then she looked at the "
18+
+ "sides of the well and noticed that they were filled with "
19+
+ "cupboards and book-shelves here and there she saw maps and "
20+
+ "pictures hung upon pegs She took down a jar from one of the "
21+
+ "shelves as she passed it was labeled orange marmalade but "
22+
+ "to her great disappointment it was empty she did not like to "
23+
+ "drop the jar for fear of killing somebody underneath so "
24+
+ "managed to put it into one of the cupboards as she fell past";
25+
26+
String words[] = text.split(" ");
27+
Arrays.sort(words);
28+
29+
int count = 0;
30+
for (String s : words)
31+
System.out.println(s);
32+
33+
// keep record of how many times a word came in text
34+
TreeMap<String, Integer> wordList = new TreeMap<String, Integer>();
35+
String thisWord = "";
36+
String nextWord = "";
37+
38+
for (int i = 0; i < words.length - 1; ++i) {
39+
thisWord = words[i];
40+
++count;
41+
nextWord = words[i + 1];
42+
43+
if (!thisWord.equals(nextWord)) {
44+
wordList.put(thisWord, count);
45+
count = 0;
46+
}
47+
}
48+
49+
// handle odd number of words
50+
if (((words.length) & 1) != 0) {
51+
nextWord = words[words.length - 1];
52+
if (thisWord.equals(nextWord))
53+
++count;
54+
else
55+
count = 1;
56+
57+
wordList.put(nextWord, count);
58+
}
59+
60+
Set set = wordList.entrySet();
61+
Iterator i = set.iterator();
62+
while (i.hasNext()) {
63+
Entry entry = (Entry) i.next();
64+
System.out.println(entry.getKey() + " : " + entry.getValue());
65+
}
66+
67+
}
68+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
package associativeCollection;
2+
3+
import java.util.HashMap;
4+
import java.util.Map.Entry;
5+
6+
//order of elements is unpredictable in HashMaps
7+
public class NumbersHashMap {
8+
9+
public static void main(String[] args) {
10+
HashMap<String, String> map = new HashMap();
11+
map.put("marshal", "7876");
12+
map.put("Jimmy", "7876");
13+
map.put("jolly", "7876");
14+
15+
map.put("ozzy", "7876");
16+
map.put("scarfield", "7876");
17+
18+
System.out.println("Jimmy's number is " + map.get("Jimmy"));
19+
System.out.println("Size is " + map.size());
20+
21+
if (map.containsKey("Jimmy")) {
22+
map.remove("Jimmy");
23+
System.out.println("Do map contains number for jimmy ? " + "yes");
24+
System.out.println("Successfully removed");
25+
26+
}
27+
for (Entry<String, String> entry : map.entrySet()) {
28+
System.out.println(entry.getKey() + " : " + entry.getValue());
29+
}
30+
31+
System.out.println("Size is " + map.size());
32+
33+
}
34+
35+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
package associativeCollection;
2+
3+
4+
//treemap will keep items in order
5+
import java.util.Map.Entry;
6+
import java.util.TreeMap;
7+
8+
public class NumbersTreeMap {
9+
10+
public static void main(String[] args) {
11+
TreeMap <String , String> map = new TreeMap();
12+
map.put("marshal", "7876");
13+
map.put("Jimmy", "7876");
14+
map.put("jolly", "7876");
15+
16+
map.put("ozzy", "7876");
17+
map.put("scarfield", "7876");
18+
19+
System.out.println("Jimmy's number is " + map.get("Jimmy"));
20+
System.out.println("Size is " + map.size());
21+
for(Entry<String, String> entry : map.entrySet())
22+
{
23+
System.out.println(entry.getKey() + " : " +entry.getValue());
24+
}
25+
map.remove("Jimmy");
26+
27+
28+
System.out.println("Size is " + map.size());
29+
30+
31+
}
32+
33+
}

0 commit comments

Comments
 (0)