资源简介
清华大学殷人昆数据结构第二版的书上所有的代码,修正了原书中某些错误信息,读者可以进行调试,如果有问题请联系我QQ1871465933,添加时注意注明来源。谢谢!
代码片段和文件信息
#include
#include “CircList.h“
using namespace std;
int main(){
CircList list;
ifstream fin(“list.txt“);
assert(fin);
fin >> list;
cout << “The initial list in the file is:\n“ << list << endl;
list.Inverse();
cout << “Inverse the list then the list is:\n“ << list << endl;
cout << “========================================\n“;
int i elem;
cout << “Test the Insert Remove and Search function:\n“;
cout << “Each test will terminate by an invaid input.“;
cout << “\n----------------------------------------\n“;
cout << “1. Test the Insert(int i T &elem):\n“;
while (1){
cout << “Input the index i and data elem to insert: “;
cin >> i >> elem;
if (!cin){//流不正常
cin.clear();//恢复正常
cin.ignore(100‘\n‘);
break;
}
if (i
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4428 2009-05-06 13:56 ch09_Sort\dataList\dataList.dsp
文件 541 2009-05-06 13:48 ch09_Sort\dataList\dataList.dsw
文件 2848 2009-05-06 13:52 ch09_Sort\dataList\datalist.h
文件 217 2009-05-06 13:52 ch09_Sort\dataList\main.cpp
文件 3017 2009-05-06 13:55 ch09_Sort\dataList\person.h
文件 128 2007-12-13 17:45 ch09_Sort\dataList\persons.txt
文件 10917 2009-04-29 08:57 ch09_Sort\MySort\BST.h
文件 2960 2009-05-06 16:41 ch09_Sort\MySort\dataList.h
文件 3390 2009-05-11 14:53 ch09_Sort\MySort\main.cpp
文件 4588 2009-05-06 13:58 ch09_Sort\MySort\MySort.dsp
文件 537 2009-05-06 13:56 ch09_Sort\MySort\MySort.dsw
文件 9052 2009-05-11 15:00 ch09_Sort\MySort\MySort.h
文件 3017 2009-05-06 13:55 ch09_Sort\MySort\person.h
文件 468 2009-05-11 14:58 ch09_Sort\MySort\persons.txt
文件 1689 2009-03-13 19:35 ch09_Sort\MySort\SeqStack.h
文件 1865 2009-05-08 09:08 ch09_Sort\Staticli
文件 4463 2009-05-06 18:23 ch09_Sort\Staticli
文件 557 2009-05-06 18:11 ch09_Sort\Staticli
文件 4841 2009-05-08 09:07 ch09_Sort\Staticli
文件 41 2007-12-29 23:43 ch09_Sort\WinnerTree\data.txt
文件 713 2009-05-06 18:56 ch09_Sort\WinnerTree\main.cpp
文件 740 2009-05-06 18:47 ch09_Sort\WinnerTree\TournamentSort.h
文件 4460 2009-05-06 18:57 ch09_Sort\WinnerTree\WinnerTree.dsp
文件 545 2009-05-06 18:43 ch09_Sort\WinnerTree\WinnerTree.dsw
文件 2799 2009-05-06 18:47 ch09_Sort\WinnerTree\WinnerTree.h
文件 4367 2009-03-11 15:43 ch02_LinerList\CircList\CircList.dsp
文件 541 2009-03-11 13:56 ch02_LinerList\CircList\CircList.dsw
文件 7013 2010-05-12 02:12 ch02_LinerList\CircList\CircList.h
文件 20 2007-12-19 22:07 ch02_LinerList\CircList\list.txt
文件 1983 2009-03-11 19:00 ch02_LinerList\CircList\main.cpp
............此处省略253个文件信息
- 上一篇:NS3中的第三个third.cc
- 下一篇:链表实现学生健康管理
相关资源
- 北京科技大学计算机组成原理和数据
- 数据结构算法课堂手写笔记整理
- 数据结构1800题含答案
- 大话数据结构原书 + 源代码
- 《常用数据结构和算法》
- 马的遍历数据结构
- 数据结构 图书管理系统课程设计代码
- 数据结构教程第2版李春葆编的上机实
- LUT算法与数据结构--递归替换问题和兰
- 山东大学软件学院数据结构实验报告
- 数据结构 停车场管理 实验报告
- 数据结构图的遍历的图形演示课程设
- 数据结构课程设计舞伴问题
- 删除顺序表中的元素
- 专升本历年数据结构真题
- 数据结构(全集珍藏版)
- 数据结构试题文件,名校近年的考题
- 数据结构课程设计人口信息处理
- 数据结构课程设计学校超市选址问题
- 拓扑排序数据结构课程设计报告图形
- 数据结构设计性实验----表达式类型的
- 数据结构课程设计 活期储蓄帐目管理
- 多任务下的数据结构与算法配书光盘
- 数据结构——停车场管理系统
- 数据结构课程设计----集合的并、交和
- 数据结构课程设计_一元稀疏多项式计
- 数据结构-通讯录
- 数据结构(李春葆)(第二版)
- 四川大学计算机学院数据结构作业
- 全国交通咨询程序
评论
共有 条评论