资源列表
stack
- C 语 言 实 现 栈 的 基 本 操 作 。 构 造 一 个 栈 并 读 入 数 据 , 进 栈 、 出 栈 、 取 栈 顶 元 素 操 作 -the fundmation operation of stack
complex_add_multiply
- 设两个复数A=a+bi, B=c+di(其中a,c为实部,c,d为虚部) 则A+B=a+c+(b+d)i A*B=ac-bd+(ad+bc)i,用单链表实现-complex add and multiply
create_binarytree
- 因为程序中要知道叶子结点(终点),所以要将上面的二叉树变成扩展二叉树 (把叶子结点的孩子补成#, 用作标记),以此方式创建二叉树-create binarytree
create_linklist_head
- 头插法是新增节点总是插在头部,以带头结点链表为例,链表头指针是Head,新增节点p的方式创建单恋表-create linklist with head node
joseph
- 约瑟夫环是一个数学的应用问题:已知n个人(以编号1,2,3...n分别表示)围坐在一张圆桌周围。从编号为k的人开始报数,数到m的那个人出列;他的下一个人又从1开始报数,数到m的那个人又出列;依此规律重复下去,直到圆桌周围的人全部出列-joseph ring
CHOLMOD wrapper
- A wrapper of CHOLMOD matrix and vector
SPFA-algorithm
- 关于数据结构中单源最短路径算法SPFA算法的简单实现,注释很清晰,适用于初学者。-Simple implementation of the data structure on the single-source shortest path algorithm SPFA algorithm, notes very clear, suitable for beginners.
bigint
- 使用vs2010开发环境编写的建立大整形数类来完成大整数之间的四则运算。简单且注释清楚。在C++课程学习中常见。-Use vs2010 development environment written in establishing large number of classes to complete orthopedic four operations between large integers. Simple and clear comments
Strings
- 数据结构中常见抽象数据类型--字符串的自定义实现-The custom implementation of common abstract data types--strings in data structure
LinkList
- 数据结构中常见抽象数据类型--链式表的自定义实现-The custom implementation of common abstract data types--link list in data structure
ContList
- 数据结构中常见抽象数据类型--线性表的自定义实现-The custom implementation of common abstract data types--continuous list in data structure
queue
- 数据结构中常见抽象数据类型--队列的自定义实现-The custom implementation of common abstract data types--queue in data structure