Collections

Ludovic Deneuville

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

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

Play with values

names.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)

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)

HashMap

  • HashMap<K, V>
  • associate a key (K) with a value (V)
  • Unordered
  • Fast access

Create and pop a HashMap

import java.util.HashMap;

HashMap<String, Integer> fruitStore = new HashMap<>();

fruitStore.put("Apple", 5);
fruitStore.put("Banana", 3);
fruitStore.put("Orange", 10);

fruitStore.put("Apple", 5);         // update

fruitStore.remove("Banana");

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<>();

colors.add("Blue");
colors.add("Green");

boolean containPink = colors.contains("Pink");
colors.remove("Green");

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.