资源列表
Cell
- 用于验证稀疏矩阵存储相关测试代码,稀疏矩阵存储单元。-Used to verify the sparse matrix storage-related test code, sparse matrix storage unit.
图像卷积代码
- 用c语言,最简洁的方法实现了图像卷积操作
Nested-Matrix
- 有n个矩形,选出尽可能多的矩形排成一行,使得除最后一个外,每一个矩形都可以嵌套在下一个矩形内。-There are n rectangles, rectangles selected as many aligned such that except the last, are each rectangle nested within the next rectangle.
a
- 双向链表的各种操作(包括建立,插入,删除,查找等)-Two-way linked list of a variety of operations (including create, insert, delete, search, etc.)
cpm
- critical path method
RandQSort
- 使用随即快速排序算法可以提高算法的排序速度-the random quick sort
yuesf
- 约瑟夫问题是个有名的问题:N个人围成一圈,从第一个开始报数,第M个将被杀掉,最后剩下一个,其余人都将被杀掉。例如N=6,M=5,被杀掉的人的序号为5,4,6,2,3。最后剩下1号。 假定在圈子里前K个为好人,后K个为坏人,你的任务是确定这样的最少M,使得所有的坏人在第一个好人之前被杀掉。 -yuesf program
StackLL
- Implementation of Stack Data structures
Insertion-Sort
- 有一个已经有序的数据序列,要求在这个已经排好的数据序列中插入一个数,但要求插入后此数据序列仍然有序,这个时候就要用到一种新的排序方法——插入排序法,插入排序的基本操作就是将一个数据插入到已经排好序的有序数据中,从而得到一个新的、个数加一的有序数据,算法适用于少量数据的排序,时间复杂度为O(n^2)。是稳定的排序方法。-Insertion sort in C/C++
linklists
- 连接两个链表。这个程序可以将两个链表连接在一起。-link two lists
Prime
- 判断用户输入的一个数字是否为素数,并对一个数字进行因式分解-Judgment entered by the user whether a number is prime, and a factoring numbers
matching-brackets
- 利用c++数据结构 栈 解决括号匹配问题 -Use c++ to solve matching brackets