搜索资源列表
poj2677--TourTSP
- poj2677,算法导论中的DP题目,TSP简化版本
高斯消去求逆矩阵
- 通过高斯消去法,进行矩阵求逆运算,在工程中有很强的实用价值。-through Gaussian elimination method for computing matrix inversion, the project has a strong practical value.
poj2677--TourTSP
- poj2677,算法导论中的DP题目,TSP简化版本-poj2677, Introduction to the DP algorithm topics, TSP simplified version
suanfadaoluen
- 这是《麻省理工学院算法导论中英文版习题笔记全》,详细介绍了各种算法-This is the Massachusetts Institute of Technology in the English version of Introduction to Algorithms Exercises Notebook whole , detailing a variety of algorithms
Introductiontoalgorithms
- 已用HTML编译过的算法导论英文版、作者的正宗课后思考题答案-Has been compiled using HTML Introduction to the English version of the algorithm, after the author' s real question for the answer
zhijiexunzbiao
- 算法导论中直接寻址表的C++实现,大家可以参照着学习。-Introduction to Algorithms directly addressing the table C++ implementation, we can look forward to learning.
sort
- 算法导论中第二章所有排序的自己模拟,快速排序,堆排序,计数排序,最大最小数,选择第n个数-Introduction to Algorithms in the second chapter of its own simulation of all sort, quick sort, heap sort, counting sort, maximum and minimum number, select the first n number
Longgest
- 找两个字符串中最长最序列的代码,自己编写的,算法思想参考的算法导论中的LCS算法。能成功运行。 c语言编写-C code.also called LCS
lcs
- 算法导论中最长公共子序列的实现,采用动态规划方法-Introduction to Algorithms in the realization of the longest common subsequence, dynamic programming method
rbinsert
- 红黑树的插入算法实现,利用算法导论中的伪代码-Red-black tree insertion algorithm, using pseudocode in Introduction to Algorithms
fft
- 改进的算法导论中的fft代码,将nlogn的复杂度下降到n,编译成功,4096个数据点时常为2秒。-Fft code in the Introduction of the improved algorithm will be the nlogn of complex decreased to n successful compile 4096 data points from time to time for two seconds.
Backtracking-optimal-scheduling
- 本代码为算法导论中最佳调度问题的回溯算法。算法思想为:建立一棵深度为N的M叉树,从根结点出发,进行深度优先遍历。每搜索完一条路径则记录下besttime 和bestx[]序列开始结点就成为一个活结点,同时也成为当前的扩展结点。在当前的扩展结点处向纵深方向移至一个新结点,成为一个新的活结点,也为当前扩展结点。如果在当前的扩展结点处不能再向纵深方向扩展,则当前扩展结点就成为死结点。此时,应回溯至最近的一个活结点处,并使这个活结点成为当前的扩
Word_Ladder
- 算法导论中的,关于 leetcode oj, word_ladder的问题源代码 -Introduction to algorithms, on leetcode oj, word_ladder problem source code
Word_LadderII
- 算法导论中,关于leetcode oj, word_ladderII的问题源代码 -Introduction to Algorithms, regarding leetcode oj, word_ladderII problem source code
kuaisupaixu
- 经典的快速排序算法,详细的中文注释介绍,基于算法导论中递归方法的C++实现-Quick sort algorithm
QuickSort
- 算法导论中的快速排序算法的具体实现,包括对该算法的简单变形,其中采用文件输入,包括正序,逆序,随机情况的不同输入-Introduction to Algorithms concrete realization of fast sorting algorithms, including the algorithm is simple deformation, which uses the file input, including pos
Introduction_to_Algorithms-master
- 算法导论中各种排序、数据结构、动态规划等的实现-Realization of various algorithms in data structure, sorting, an introduction to dynamic programming.
algorithms-master
- 数据结构和算法导论中的许多算法的实现。用c++编写-By C++,some algorithms
RBTree
- 算法导论中红黑树插入删除源码,自己编写的 亲测可用-Introduction to algorithms in the red and black tree insert to delete the source code
算法导论
- 这是一本《算法导论》,讲解编程中常用的算法,比如动态规划,贪心算法,分治策略等等。