https://github.com/xirong/my-backend
learning content of backend development (java 后端开发知识汇总)
https://github.com/xirong/my-backend
Last synced: 4 months ago
JSON representation
learning content of backend development (java 后端开发知识汇总)
- Host: GitHub
- URL: https://github.com/xirong/my-backend
- Owner: xirong
- License: mit
- Created: 2016-01-24T08:01:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-08-05T12:15:16.000Z (about 4 years ago)
- Last Synced: 2025-04-08T01:34:21.639Z (6 months ago)
- Language: Java
- Homepage:
- Size: 4.95 MB
- Stars: 118
- Watchers: 12
- Forks: 41
- Open Issues: 0
-
Metadata Files:
- Readme: readme-algorithm.md
- License: LICENSE
Awesome Lists containing this project
README
# 数据结构及算法
## 排序算法
复习数据结构算法进行的练习,整节来源于书籍《[大话数据结构](http://book.douban.com/subject/6424904/)》- [冒泡排序及其改进](http://www.ixirong.com/2015/07/16/sort-algorithm-bubblesort/) ,源码地址[BubbleSort](sort-algorithm/BubbleSort.java)
- [简单选择排序](http://www.ixirong.com/2015/07/19/sort-algorithm-selectionsort/) ,源码地址[SelectionSort](sort-algorithm/SelectionSort.java)
- [直接插入排序](http://www.ixirong.com/2015/07/19/sort-algorithem-insertsort/),源码地址[SelectionSort](sort-algorithm/SelectionSort.java)
- 希尔排序
- 堆排序
- 归并排序
- 快速排序
- 桶排序