资源列表
THEbestwayoftheroad
- 这是上海铁路局目前仍在使用的行包托运软件中的一部分内部算法。该题目采用1995年年底我国铁路运输网的真实数据进行编程和运行验证。 铁路运输网络中由铁路线和火车站的两个主要概念,譬如:1号铁路线表示京广线,2号铁路线表示京沪线等。 铁路线对象包括铁路线编号,铁路线名称,起始站编号,终点站编号,该铁路线长度,通行标志(00B客货运禁行,01B货运通行专线,10B客运通行专线,11B客货运通行)。 火车站对象包括所属铁路线编号,车站代码,车站名,车站简称,离该铁路线起点站路程及终点站路程。
a
- 多项式相乘,用c++写的,数据结构上机作业-Polynomials multiplied by
shujujiegou
- 数据结构的试题样板,易于掌握和学习数据结构相关的只是框架和体系-Questions of data structure model, easy to learn and study the data structures related to the framework and system
cudd231
- 用于二叉决策图及其扩展形式的软件包,该包在VC++6.0下使用-Binary Decision Diagrams and its extended form of the package, the package in VC++6.0
maopappaixu
- C 冒泡排序 算法,提供了基本的冒泡排序算法以及例子-C bubble sort
paixu
- 查看数据结构的排序演示和工作过程和原理等-View the sort demonstration of data structures and work processes and principles
tree
- 查看数据结构的树的演示和工作过程和原理等-View the tree shows the data structure and work processes and principles
01
- C 各种常见排序算法 学习 算法的好码-C a variety of common sorting algorithm learning algorithm code!
1111
- 二叉树的建立演示,可以将你输入的数字建立完全的二叉树-#include <stdio.h> #include <string.h> #include <windows.h> struct BTree { int data struct BTree* left struct BTree* right } //end struct BTree BTree* CreateLeaf(int number) {
Hash
- 散列表实现电话号码查找系统。 (1) 设每个记录有下列数据项:用户名、电话号码、地址; (2) 从键盘输入各记录,以用户名(汉语拼音形式)为关键字建立散列表; (3) 采用一定的方法解决冲突; (4) 查找并显示给定电话号码的记录; -The hash table phone number lookup system. (1) Let each record the following data: user name, phone number, address in
BSTree
- 实现对依次输入的关键字序列建立二叉排序树,并能实现二叉排序树的查找、插入和删除运算。 链式存储结构: typedef struct BiTNode{ KeyType key BiTNode* lchild BiTNode* rchild }*BiTree 关键字类型KeyType为int。 -Binary sort tree, and the turn sequence of the keywords entered binary sort t
maze
- 以一个m*n的长方阵表示迷宫,0和1分别表示迷宫中的通路和障碍。设计一个程序,对任意设定的迷宫,求出一条从入口到出口的通路,或得出没有通路的结论。 要求:首先实现一个栈类型,然后编写一个求解迷宫的非递归程序。求得的通路以三元组(i,j,d)的形式输出,其中(i,j)指示迷宫中的一个坐标,d表示走到下一坐标的方向。 迷宫为8*8,采用二维数组存放迷宫信息,入口为(1,1),出口为(8,8),输入格式: 0为可通过,1为路障。 二维数组的(0,i),(I,0),(10,i),(
