资源列表
查找算法
- 在Windows平台下VS2010实现了集中基本的查找算法,数据结构的基础(In the Windows platform, VS2010 implements the basic search algorithm, data structure foundation)
顺序表
- 顺序表是在计算机内存中以数组的形式保存的线性表,是指用一组地址连续的存储单元依次存储数据元素的线性结构。线性表采用顺序存储的方式存储就称之为顺序表。顺序表是将表中的结点依次存放在计算机内存中一组地址连续的存储单元中。本程序设计顺序表的创建销毁插入遍历等操作。(A sequential table is a linear list stored in an array of memory in a computer memory. It is a linear structure that sto
机器学习入门资料
- 机器学习资料,可用于机器学习入门,大神讲解(Machine learning data, can be used for machine learning portal, great God explained)
Lab3
- 可以运算+-*/%和括号的计算器,在终端运行(Terminal calculator with parentheses and so on)
归并排序
- 这是关于严蔚敏版的《数据结构》第八章归并排序(This is the eight version of the data structure, chapter viii merge sort)
直接插入排序
- 这是关于严蔚敏版的《数据结构》第八章直接 插入排序(This is the eighth chapter of the data structure for the Yan Weimin edition Insertion sort)
十五个经典算法研究与总结、目录+索引(by_
- 十五个经典算法研究与总结、目录+索引(转)(classical algorithm)
GraphSearch
- 一般图搜索框架。用于图搜索算法,可修改估值函数,实现不同的图搜索算法。(General graph search framework.)
爬山 完美
- 使用爬山法实现n皇后问题 输入 n,并用运行时间比较几种算法在相同规模的问题时的求解效率。列表给出结果。 比较同一算法在 n 不相同时的运行时间,分析算法的时间复杂性。(Use of climbing method to achieve the N Queens)
hash
- 它通过从预处理源创建一个散列和编译源代码。创建哈希表(It works by creating a hash from the preprocessed sources and the compiler options used to compile the sources)
机器学习实战 单页
- 机器学习入门 如果想进一步学习机器学习 这本书的帮助很大 很好(If you want to learn more about machine learning, this book is a great help)
Trie_and_Huffman
- 功能1:使用一种树型结构来实现我们的单词计数功能——Trie树 功能2:Huffman树进行编码 程序输入: 第一行为一个正整数n,表示输入单词的总数。 接下来的n行,每行为一个单词,单词由不超过10个的小写英文字母组成。 接下来的一行为一个正整数m,表示查询的次数。 接下来的m行,每行为一个数字和一个查询,当数字为1时,查询为单词,输出该单词出现的次数(可以为0);当数字为2时,查询为Huffman编码,输出对应的单词(该Huffman编码对应的单词确定存在)。(Function
