Collections
Collections in Java
Three main types to store and manage data:
- List
- Map
- Set
Each serves a different purpose.
ArrayList
- Ordered
- Allow duplicates
- Fast for reading, slow for searching
- Slow for inserting/deleting in the middle
LinkedList (Fast for inserting/deleting, slower for accessing elements)
Create an ArrayList
import java.util.ArrayList;
import java.util.List;
List<String> names = new ArrayList<>();
List<Integer> numbers = new ArrayList<>();
List<String> colors = List.of("Blue", "Green", "Yellow"); // Immutable
ArrayList<>()
: constructorList<String> colors = new ArrayList<>(Arrays.asList("Blue", "Green", "Yellow"));
- other ways
- possible to create list of objects
Play with values
.add("Alba"); // add at the end
names.addAll(List.of("Lisa", "Stan")); // add multiple
names.add(1, "Martin"); // add at a specific index
names
.set(1, "Johannes") // replace
names
.remove(3); // remove by index
names.remove("Stan"); // remove by value (first occurence) names
Other methods
int sizeList = names.size();
String valueSecondIndex = names.get(2) // get a value by index
boolean containsJo = names.contains("Jo"); // contain a value?
System.out.println("Empty List? " + names.isEmpty());
Browse a List
By index
for (int i = 0; i < names.size(); i++) {
System.out.println(names.get(i));
}
By value
for (String name : names) {
System.out.println(name);
}
Usefull methods
import java.util.Collections;
Collections.sort(List<T> list);
Collections.reverse(List<T> list);
Collections.shuffle(List<T> list);
Collections.replaceAll(List<T> list, T oldVal, T newVal)
<T>
: This is the type parameter- Those methods modifie the original list in place
HashMap
HashMap<K, V>
- associate a key (K) with a value (V)
- Unordered
- Fast access
- like python dict
- others:
- TreeMap: Sorted by key
- LinkedHashMap: Maintains insertion order
Create and pop a HashMap
import java.util.HashMap;
HashMap<String, Integer> fruitStore = new HashMap<>();
.put("Apple", 5);
fruitStore.put("Banana", 3);
fruitStore.put("Orange", 10);
fruitStore
.put("Apple", 5); // update
fruitStore
.remove("Banana"); fruitStore
replace (don’t create key if not exists):
- map.replace(key, value);
- map.replace(key, oldValue, newValue) only if oldValue is correct
HashMap methods
int nbElements = fruitStore.size();
boolean hasBanana = fruitStore.containsKey("Banana");
boolean hasFive = fruitStore.containsValue(5);
int nbApple = fruitStore.get("Apple")
Iterate over a HashMap
By keys
for (String key : fruitStore.keySet()) {
System.out.println(key + ": " + fruitStore.get(key));
}
By values
for (Integer value : fruitStore.values()) {
System.out.println(value);
}
Both keys and values
for (Map.Entry<String, Integer> entry : fruitStore.entrySet()) {
System.out.println(entry.getKey() + " : " + entry.getValue());
}
Using Iterator with entrySet
Iterator<Map.Entry<String, Integer>> iterator = fruitStore.entrySet().iterator();
while (iterator.hasNext()) {
Map.Entry<String, Integer> entry = iterator.next();
System.out.println(entry.getKey() + ": " + entry.getValue());
}
HashSet
- No duplicates
- Unordered
import java.util.HashSet;
HashSet<String> colors = new HashSet<>();
.add("Blue");
colors.add("Green");
colors
boolean containPink = colors.contains("Pink");
.remove("Green");
colors
System.out.println("Size of set: " + colors.size());
for (String color : colors) {
System.out.println(color);
}
Choosing Between List, Set, and Map
Feature | ArrayList | HashSet | HashMap |
---|---|---|---|
Allows Duplicates? | ✅ | ❌ | ❌ (Keys) |
Maintains Order? | ✅ | ❌ | ❌ |
Key-Value Storage? | ❌ | ❌ | ✅ |
Fast Lookup? | ❌ O(n) | ✅ O(1) | ✅ O(1) |
👉 Use a List when order matters and duplicates are allowed.
👉 Use a Set when uniqueness is required.
👉 Use a Map when you need key-value storage.