• 大小: 205KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-06
  • 语言: 其他
  • 标签: 殷人昆  数据结构  

资源简介

清华大学殷人昆数据结构第二版的书上所有的代码,修正了原书中某些错误信息,读者可以进行调试,如果有问题请联系我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\StaticlinkedList\main.cpp

     文件       4463  2009-05-06 18:23  ch09_Sort\StaticlinkedList\StaticlinkedList.dsp

     文件        557  2009-05-06 18:11  ch09_Sort\StaticlinkedList\StaticlinkedList.dsw

     文件       4841  2009-05-08 09:07  ch09_Sort\StaticlinkedList\StaticlinkedList.h

     文件         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个文件信息

评论

共有 条评论