赞
踩
List集合是有序的元素集合,允许存储重复的元素。常见的List实现类有ArrayList、LinkedList等。
ArrayList是最常用的List实现类,它底层使用数组来存储元素,因此查找元素的速度较快,但插入和删除元素时可能需要移动其他元素,所以速度相对较慢。
import java.util.ArrayList; import java.util.List; public class ArrayListDemo { public static void main(String[] args) { List<String> list = new ArrayList<>(); list.add("Apple"); list.add("Banana"); list.add("Cherry"); // 遍历List for (String fruit : list) { System.out.println(fruit); } // 使用索引访问和修改元素 System.out.println("Element at index 1: " + list.get(1)); list.set(1, "Blueberry"); // 将索引为1的元素替换为"Blueberry" } }
LinkedList底层使用链表实现,因此在元素的插入和删除操作上效率较高,但在查找元素时可能需要遍历整个链表,所以速度较慢。
import java.util.LinkedList; import java.util.List; public class LinkedListDemo { public static void main(String[] args) { List<String> list = new LinkedList<>(); list.add("Apple"); list.addFirst("Orange"); // 在链表头部添加元素 list.addLast("Watermelon"); // 在链表尾部添加元素 // 遍历List for (String fruit : list) { System.out.println(fruit); } // 使用索引访问元素(注意LinkedList的get和set方法性能较低) System.out.println("Element at index 1: " + list.get(1)); // 移除元素 list.remove("Apple"); } }
Set集合不允许存储重复的元素。常见的Set实现类有HashSet、TreeSet等。
HashSet基于哈希表实现,元素是无序的,且元素存储的顺序与插入顺序无关,查找效率高。
import java.util.HashSet; import java.util.Set; public class HashSetDemo { public static void main(String[] args) { Set<String> set = new HashSet<>(); set.add("Apple"); set.add("Banana"); set.add("Apple"); // 重复元素不会被添加 // 遍历Set for (String fruit : set) { System.out.println(fruit); } } }
TreeSet基于红黑树实现,可以对元素进行自然排序或自定义排序。
import java.util.Set; import java.util.TreeSet; public class TreeSetDemo { public static void main(String[] args) { Set<String> set = new TreeSet<>(); set.add("Banana"); set.add("Apple"); set.add("Cherry"); // 遍历Set(元素已按自然顺序排序) for (String fruit : set) { System.out.println(fruit); } // 自定义排序,需要实现Comparator接口 Set<String> customSet = new TreeSet<>((o1, o2) -> o2.compareTo(o1)); // 降序排序 customSet.add("Banana"); customSet.add("Apple"); for (String fruit : customSet) { System.out.println(fruit); } } }
Map集合用于存储键值对映射关系,键(Key)是唯一的,每个键最多映射到一个值(Value)。常见的Map实现类有HashMap、TreeMap等。
HashMap基于哈希表实现,允许使用null作为键和值,并且不保证映射的顺序。HashMap在存储键值对时,通过计算键的哈希值来确定存储位置,因此查找效率非常高。
import java.util.HashMap; import java.util.Map; public class HashMapDemo { public static void main(String[] args) { Map<String, Integer> map = new HashMap<>(); map.put("Apple", 1); map.put("Banana", 2); map.put("Cherry", 3); // 遍历Map for (Map.Entry<String, Integer> entry : map.entrySet()) { System.out.println("Key: " + entry.getKey() + ", Value: " + entry.getValue()); } // 获取和修改值 System.out.println("Value for Apple: " + map.get("Apple")); map.put("Apple", 4); // 修改键为"Apple"的值 // 检查键是否存在 if (map.containsKey("Orange")) { System.out.println("Orange exists in the map."); } else { System.out.println("Orange does not exist in the map."); } // 移除键值对 map.remove("Banana"); } }
TreeMap基于红黑树实现,它可以对键进行自然排序或自定义排序,因此返回的元素是排序好的。
import java.util.Map; import java.util.TreeMap; public class TreeMapDemo { public static void main(String[] args) { Map<String, Integer> map = new TreeMap<>(); map.put("Banana", 2); map.put("Apple", 1); map.put("Cherry", 3); // 遍历TreeMap(元素已按键的自然顺序排序) for (Map.Entry<String, Integer> entry : map.entrySet()) { System.out.println("Key: " + entry.getKey() + ", Value: " + entry.getValue()); } // 自定义排序,需要实现Comparator接口 Map<String, Integer> customMap = new TreeMap<>((o1, o2) -> o2.compareTo(o1)); // 降序排序 customMap.put("Banana", 2); customMap.put("Apple", 1); for (Map.Entry<String, Integer> entry : customMap.entrySet()) { System.out.println("Key: " + entry.getKey() + ", Value: " + entry.getValue()); } } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。