https://github.com/chiclaim/bookcodepractise
BookCodePractise
https://github.com/chiclaim/bookcodepractise
algorithm datastructures javaframework
Last synced: about 2 months ago
JSON representation
BookCodePractise
- Host: GitHub
- URL: https://github.com/chiclaim/bookcodepractise
- Owner: chiclaim
- Created: 2017-12-20T07:29:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-25T02:15:21.000Z (almost 7 years ago)
- Last Synced: 2025-03-24T11:13:25.671Z (2 months ago)
- Topics: algorithm, datastructures, javaframework
- Language: Java
- Size: 2.59 MB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 数据结构与算法
### 数据结构
* [数组](https://blog.csdn.net/johnny901114/article/details/80158343)
* [链表](https://blog.csdn.net/johnny901114/article/details/80351584)
* [栈](https://blog.csdn.net/johnny901114/article/details/80373290)
* [队列](https://blog.csdn.net/johnny901114/article/details/80456833)、[优先队列](https://blog.csdn.net/johnny901114/article/details/80550279)
* [二叉树](https://blog.csdn.net/johnny901114/article/details/80574803)
* [二分搜索树](https://blog.csdn.net/johnny901114/article/details/80598727)
* [线段树](https://blog.csdn.net/johnny901114/article/details/80643017)
* [Trie](https://blog.csdn.net/johnny901114/article/details/80711441)
* [并查集](https://blog.csdn.net/johnny901114/article/details/80721436)
* [AVL](https://blog.csdn.net/johnny901114/article/details/80740418)
* [红黑树](https://blog.csdn.net/johnny901114/article/details/81046088)
* 哈夫曼树
* KD树
* 哈希表
* 堆### 涉及的Java集合类
* [ArrayList](https://blog.csdn.net/johnny901114/article/details/80158343)
* [Vector](https://blog.csdn.net/johnny901114/article/details/80158343)
* [LinkedList](https://blog.csdn.net/johnny901114/article/details/80373290)
* [Stack](https://blog.csdn.net/johnny901114/article/details/80373290)
* [ArrayDeque](https://blog.csdn.net/johnny901114/article/details/80456833)
* [PriorityQueue](https://blog.csdn.net/johnny901114/article/details/80550279)
* [TreeMap](https://blog.csdn.net/johnny901114/article/details/81046088)
* [TreeSet](https://blog.csdn.net/johnny901114/article/details/81046088)
* HashMap
* LinkedHashMap
* HashSet
* LinkedHashSet### 算法
* 选择排序
* 冒泡排序
* 快速排序
* 插入排序
* 直接插入排序
* 折半插入排序
* 堆排序* 归并排序
* 桶式排序
* 基数排序
* 计数排序
* 二分查找
* 并查集
* 图的遍历
* 最小生成树
* 最短路径