java数据结构模板
变长数组
1 | List<E> list = new LinkedList<>(); |
队列
1 | Queue<E> queue = new LinkedList<>(); |
堆(小根堆)
1 | PriorityQueue<E> minHeap = new PriorityQueue<>(); |
栈
1 | Deque<E> stack = new LinkedList<>(); |
哈希表
1 | Map<K, V> eleMap = new HashMap<>();//可用匿名内部类初始化 |
集合
1 | Set<E> set = new HashSet<>(); |
有序集合
1 | TreeSet<E> set = new TreeSet<>(); |
待续…
- 標題: java数据结构模板
- 作者: sdjasj
- 撰寫于: 2022-02-04 21:56:43
- 更新于: 2022-02-13 15:05:57
- 連結: https://redefine.ohevan.com/2022/02/04/java数据结构模板/
- 版權宣告: 本作品采用 CC BY-NC-SA 4.0 进行许可。
留言