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

https://github.com/discretetom/algorithm-design-and-analyze

大二下 算法设计与分析
https://github.com/discretetom/algorithm-design-and-analyze

Last synced: 8 months ago
JSON representation

大二下 算法设计与分析

Awesome Lists containing this project

README

          

# algorithm-design-and-analyze

大二下 算法设计与分析

- Chapter1 递归分治
- LinerTimeSelection 线性时间选择
- QuickSortAndMergeSort 快速排序与合并排序
- ShortestPoints 最近点对
- Chapter2 动态规划
- Knapsack 背包问题
- LCS 最长子序列
- MaxSum 最大子段和
- MinWeightTriangulation 最小三角剖分
- Chapter3 贪心算法
- GreedyMinWeightTriangulation 贪心最小三角剖分
- HuffmanCoding 哈夫曼编码
- MinSpanningTree 最小生成树
- ShortestPath 最短路径
- Chapter4 回溯法
- M_Coloring m着色问题
- TSP 旅行商问题
- Chapter5 分支限界法
- TSP 旅行商问题