Three main types to store and manage data:
Each serves a different purpose.
By index
By value
HashMap<K, V>
By keys
By values
Both keys and values
for (Map.Entry<String, Integer> entry : fruitStore.entrySet()) {
System.out.println(entry.getKey() + " : " + entry.getValue());
}
Using Iterator with entrySet
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.