资源简介

《数据结构——C++实现》(第二版)课本源代码 缪淮扣 沈俊 顾训穰 编著

资源截图

代码片段和文件信息

#include “SeqList.h“	// 顺序表类

int main(void)
{
char a[] = {‘A‘‘C‘‘E‘‘G‘‘I‘} b[] = {‘A‘‘B‘‘C‘‘D‘‘H‘‘I‘‘J‘}e; 
SeqList la(a550) lb(b750) lc(50);

for (int i = 1; i <= la.GetLength(); i++) {
la.GetElem(i e); // 取出la中第i个元素e
if (lb.LocateElem(e))   // 如果e在lb中存储将其插入到lc中
lc.InsertElem(e); 
}

cout << “集合A:“;
la.Traverse(Write);     // 显示集合A
cout << endl;

cout << “集合B:“;
lb.Traverse(Write);     // 显示集合B
cout << endl;

cout << “集合C:“;
lc.Traverse(Write);     // 显示集合C
cout << endl;

system(“PAUSE“);            // 调用库函数system()暂停系统运行 
return 0;                   // 返回操作系统
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    .......       711  2014-11-05 08:47  《数据结构——C++实现》(第二版)课本源代码\Chapter3\assemble\assemble.cpp

    .......      3447  2013-12-07 21:43  《数据结构——C++实现》(第二版)课本源代码\Chapter3\assemble\Assistance.h

    .......      6747  2014-11-05 08:46  《数据结构——C++实现》(第二版)课本源代码\Chapter3\assemble\SeqList.h

    .......      3447  2013-12-07 21:43  《数据结构——C++实现》(第二版)课本源代码\Chapter3\dbl_link_list\Assistance.h

    .......      7496  2014-11-05 08:52  《数据结构——C++实现》(第二版)课本源代码\Chapter3\dbl_link_list\DbllinkList.h

    .......       925  2011-09-07 12:22  《数据结构——C++实现》(第二版)课本源代码\Chapter3\dbl_link_list\DblNode.h

    .......      2121  2014-11-05 08:52  《数据结构——C++实现》(第二版)课本源代码\Chapter3\dbl_link_list\TestDbllinkList.cpp

    .......      3447  2013-12-07 21:43  《数据结构——C++实现》(第二版)课本源代码\Chapter3\link_list\Assistance.h

    .......      7164  2014-11-05 08:49  《数据结构——C++实现》(第二版)课本源代码\Chapter3\link_list\linkList.h

    .......       628  2013-01-03 07:25  《数据结构——C++实现》(第二版)课本源代码\Chapter3\link_list\Node.h

    .......      2261  2014-11-05 08:49  《数据结构——C++实现》(第二版)课本源代码\Chapter3\link_list\TestlinkList.cpp

    .......      3447  2013-12-07 21:43  《数据结构——C++实现》(第二版)课本源代码\Chapter3\polynomial\Assistance.h

    .......      7154  2013-08-20 15:02  《数据结构——C++实现》(第二版)课本源代码\Chapter3\polynomial\linkList.h

    .......       628  2013-01-03 07:25  《数据结构——C++实现》(第二版)课本源代码\Chapter3\polynomial\Node.h

    .......       529  2008-02-08 22:18  《数据结构——C++实现》(第二版)课本源代码\Chapter3\polynomial\PolyItem.h

    .......      4695  2014-11-05 08:50  《数据结构——C++实现》(第二版)课本源代码\Chapter3\polynomial\Polynomial.h

    .......      1644  2014-11-05 08:51  《数据结构——C++实现》(第二版)课本源代码\Chapter3\polynomial\TestPolynomial.cpp

    .......      3447  2013-12-07 21:43  《数据结构——C++实现》(第二版)课本源代码\Chapter3\seq_list\Assistance.h

    .......      6747  2014-11-05 08:48  《数据结构——C++实现》(第二版)课本源代码\Chapter3\seq_list\SeqList.h

     文件       2524  2014-11-05 08:48  《数据结构——C++实现》(第二版)课本源代码\Chapter3\seq_list\TestSeqList.cpp

    .......      3447  2013-12-07 21:43  《数据结构——C++实现》(第二版)课本源代码\Chapter4\calculator\Assistance.h

    .......      6242  2014-11-05 09:30  《数据结构——C++实现》(第二版)课本源代码\Chapter4\calculator\Calculator.h

    .......      4315  2014-11-05 09:19  《数据结构——C++实现》(第二版)课本源代码\Chapter4\calculator\linkStack.h

    .......       640  2008-02-23 17:50  《数据结构——C++实现》(第二版)课本源代码\Chapter4\calculator\Node.h

    .......       863  2014-11-05 08:44  《数据结构——C++实现》(第二版)课本源代码\Chapter4\calculator\TestCalculator.cpp

    .......      3447  2013-12-07 21:43  《数据结构——C++实现》(第二版)课本源代码\Chapter4\Hanoi\Assistance.h

    .......      2158  2014-11-05 09:33  《数据结构——C++实现》(第二版)课本源代码\Chapter4\Hanoi\Hanoi.cpp

    .......      4315  2014-11-05 08:57  《数据结构——C++实现》(第二版)课本源代码\Chapter4\Hanoi\linkStack.h

    .......       640  2008-02-23 17:50  《数据结构——C++实现》(第二版)课本源代码\Chapter4\Hanoi\Node.h

    .......      3447  2013-12-07 21:43  《数据结构——C++实现》(第二版)课本源代码\Chapter4\link_queue\Assistance.h

............此处省略268个文件信息

评论

共有 条评论