资源列表
linked-list
- 链表实现,含创建,打印,两个链表的融合等-Linked List
sift算法
- 经典sift算法,图像特征提取的必学算法,具有里程碑的意义
movietag
- 把excel表中的文字出现的频率转化成一个数值矩阵-The frequency of the words in the excel table into a numerical matrix
Dijkstra-
- 数据结构与算法中,迪杰斯特拉算法的具体实现,已测试-Dijkstra
Hash
- 数据结构->哈希表的实现,处理冲突的几种方法的实现-Data structure-> hash table implementation, dealing with the implementation of several methods of conflict
KMP
- 字符串匹配算法KMP的实现:KMP算法避免了指针的回溯,大大节省了前缀字符串重复带来的重复匹配时间-String matching algorithm KMP implementation: KMP algorithm to avoid the pointer backtrack, greatly saving the prefix string to repeat the repeated match time
tree
- 利用二叉排序树,对数据进行排序,方便进行查找-Using binary sort tree, the data sort, easy to find
operation
- 用栈实现表达式求值,将中缀表达式转换成后缀表达式-Use the stack to uate the expression and convert the infix expression into a suffix expression
sujishu
- 编写C产生高斯、瑞利和泊松分布随机数,简单学习-C prepared to generate Gauss, Rayleigh and Poisson random numbers, simple learning
test
- 经典的字符串求相同部分的算法,好多加公司的面试题.请仔细醋暧昧-this is a classical pragramme
2
- 用链表的方式实现多项式的加减,其中结构体包含幂次和系数。-Polynomial addition and subtraction with a list of ways in which the structure and contains the power of coefficients.
CPP
- 10.编写一个程序,从键盘输入一批学生的成绩信息,每个学生的成绩信息包括:学号、姓名以及8门课的成绩。然后按照平均成绩由高到低顺序输出学生的学号、姓名以及平均成绩。 11.把在链表中插入一个新结点的操作写成一个函数: bool insert(Node *&h,int a,int pos) 其中,h为表头指针,a为要插入的结点的值,pos(≥0)表示插入位置。当pos为0时表示在表头插入;否则,表示在第pos个结点的后面插入。操作成功返回true,否则返回false。 12.把在