An open API service indexing awesome lists of open source software.

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 后端开发知识汇总)

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)
- 希尔排序
- 堆排序
- 归并排序
- 快速排序
- 桶排序