资源列表
tree
- 假设以如下说明的三元组 (F、C、L/R) 序列输入一棵二叉树的诸边(其中 F 表示双亲结点的标识,C 表示孩子结点标识,L/R 表示 C 为 F 的左孩子或右孩子),且在输入的三元组序列中,C 是按层次顺序出现的。设结点的标识是字符类型。F=‘^’时 C 为根结点标识,若 C 亦为‘^’,则表示输入结束。试编写算法,由输入的三元组序列建立二叉树的二叉链表,并以中序序列输出。 ^AL ABL ACR BDL CEL CFR DGR FHL ^^L -Assuming the fo
Link-Queue
- 链式队列的存储结构以及功能实现,有QueueTraverse(),EnQueue(),DeQueue()等子函数。-Queue chain structure and function of the realization of storage, there are QueueTraverse (), EnQueue (), DeQueue () Function, etc..
BTree_Traversal
- 建立一个二叉树,然后对其进行先序遍历,中序遍历和后序遍历-Binary Tree Traversal
shortest-distance
- 数据结构中的经典算法。用迪杰斯特拉算法求有向网的源点到其余各顶点的最短距离。-The classical algorithm data structure. Dijkstra algorithm is used to find a source network to the rest of the vertices of the shortest distance.
a
- 建一个表示雇员信息的employee类,其中包含数据成员name、empNo和salary,分别表示雇员的姓名、编号和月薪。再从employee类派生出3个类worker、technician和salesman,分别代表普通工人、科研人员、销售人员。三个类中分别包含数据成员productNum、workHours和monthlysales,分别代表工人每月生产产品的数量、科研人员每月工作的时数和销售人员每月的销售额。要求各类中都包含成员函数pay,用来计算雇员的月薪,并假定: 普通工人的月薪
frequency-statistics-tool
- 这是一款用Python编写的用来进行遍历词频统计的工具。-This is a written in Python used to traverse the frequency statistics tool.
hanzhi
- 所谓汉字字模就是用0、1表示汉字的字形 文件是一个关于汉字字模的。c文件,-The so-called Chinese font is represented by 0,1 font file is a Chinese character on the character font. c file,
Guessthenumberofgames
- 猜数游戏,用char型存储输入的数,筛选功能强,欢迎大家指点,songhshen@126.com-Guess the number of games, with char-type storage input the number of filtering, and welcome advice, songhshen@126.com
haffman
- 哈夫曼树编码算法的构造,使用C++语言设计实现。-huffman encoding
tudeyingyong
- 图的应用,数据结构课程,已通过编译,C语言编码,VC 2008-Map applications, data structures course, compile C language coding, VC 2008
index
- 根据所输数字,生成索引表,并根据关键字在索引表中查找其所在位置。-Depending on the input numbers, generate the index table, and based on keywords in the index table to find its location.
Maze-depth-first-algorithm
- 迷宫深度优先算法,深度优先是按照一定的顺序查找完一个分支,再查找另外一个分支,直到找到目标为止。-Depth first is according to certain order to find a branch, then find another branch, until find the target.