资源列表
largest-sub-matrix
- 最大子矩阵和 求一个n*m矩形的最大子矩形和 子矩形的规格为x*y-hdu1559 largest sub-matrix and Seeking a n* m rectangular sub-rectangular and sub-rectangular specifications for x* y
rbTree
- 自己用C++写的红黑树,包含增、删、查、找的基本功能-Redblack tree written with C++, with basic functions of increase, delete, check, find
Stack
- 数据结构栈的基本操作,包含进栈出栈的操作,用C实现-The basic operation of the stack data structure, included into the stack, the stack operation, implemented in C
e
- 本次实验需要建立一个关于学生姓名及其若干课程成绩的数据处理 系统,在满足基本的数据存储功能以外,还需要向用户提供添加新学生信息、删除已有学生信息、按某一门成绩对学生信息进行排序、按要求查询学生信息、输出学生信息到文件等功能 -The experiment requires the establishment of a data processing system on the students name and certain of its course grade to meet th
LinkList
- 链表的基本操作,包括建立、遍历、删除、添加等-Linked list of basic operations, including the establishment of traversal, delete, add, etc.
SingleList
- 数据结构单链表试验源码,包括单链表的建立销毁等基本操作-The basic operation of the singly-linked list of data structures test source code, including the establishment of the single linked list destruction
floyed_and_Dijkstra
- 弗洛伊德和迪杰斯科拉特算法 vs2010实测通过很完美的哦-Floyed and Dijstra algorithm vs2010 measured perfect
telnum
- 手机号码归属地查询库。纯C实现。无平台依赖。-telnum location query libaray
main_MatrixMul
- 矩阵乘法问题动态规划代码。 可参见博客:http://blog.csdn.net/xiaowei_cqu/article/details/8181215-Matrix multiplication problem solution using dynamic programing
Data-structure-CPP-part1
- 数据结构中伪代码的C++代码实现。本代码配合于严蔚敏编写的《数据结构》,可使初学者通过练习,更容易尽快掌握数据结构-The C++ source code of <Data Structer> writed by Weimin Yan.
Data-structure-C-part2
- 《数据结构》中伪代码的C代码编译实现,本代码配合严蔚敏编写的《数据结构》,可使初学者通过练习,更快的掌握-source code of <Data Structure> which may help beginner learn more efficiency
rootdp
- 题意:a->b c :攻克b城堡前要先攻克a城堡攻克b城堡将获得c 共有n个城堡(编号为-n)最多攻克m个城堡能获得的最大收益 把作为树的根把节点连成一棵树 p[root][i]表示在以root为根的子树中选取i个点能获得的最大收益 p[root][i]=max(p[root][i],p[root][i-j]+p[v[e]][j]) 当root!=0时每棵子树根必选所以p[root][i]=p[root][i-1]+val[root] 结果为p[0][m]
