本书是[数据结构(C语言版)].严蔚敏_吴伟民.的扫描版
2021-05-26 18:30:35 28.95MB 数据结构
1
数据结构(C语言版)(第2版)课后习题答案 李冬梅
2021-05-25 09:07:22 1.15MB 数据结构
1
8、 稀疏矩阵转置: 输入稀疏矩阵中每个元素的行号、列号、值,建立稀疏矩阵的三元组存储结构,并将此矩阵转置,显示转置前后的三元组结构。
1
资源为高清,并且附有书本上的代码,是计算机考研党必备教材
2021-05-11 19:07:30 27.11MB 数据结构教材
1
数据结构 严蔚敏 C语言版 迷宫 status mazePath(seqStack *S, posType start, posType end) { posType curPos; //current positon int curStep; //the ordinary number sElemType e; curPos = start; curStep = 1; do { if(pass(curPos)) //the current position is "accessed" { footPrint(curPos); e.ord = curStep; e.seat = curPos; e.di = 1; push(S, e); if(curPos.xPos == end.xPos && curPos.yPos == end.yPos) { return OK; //arrive at the final } curPos = nextPos(curPos, 1); curStep++; }//end of if(pass(curPos)) else //the current position is not "accessed" { if(!stackEmpty(*S)) //the stack is not empty { pop(S,&e); while(e.di == 4 && !stackEmpty(*S)) { markPrint(e.seat); //the current position must be marked by '#' pop(S,&e); }//end while if(e.di < 4) { e.di++; push(S,e); curPos = nextPos(e.seat, e.di); } }//end of if(!stackEmpty(*S)) }//end of else }while(!stackEmpty(*S)); }
2021-05-11 17:09:14 2KB 数据结构 严蔚敏 C语言版 迷宫
1
数据结构严蔚敏PPT 上课课件 完整800页 完整的数据结构课件,包括数据结构书上所有知识点以及动画
2021-04-30 12:06:33 3.82MB 数据结构 课件 PPT
1
严蔚敏等,数据结构(C语言版),清华大学出版社。课件做的很好,还配有flash文件,动画演示算法。
2021-04-30 11:59:12 4.29MB 数据结构 课件 C语言版
1
严蔚敏版《数据结构》配套的完整PPT,包括:线性表、树、图等章节
2021-04-29 17:21:00 3.82MB 数据结构
1
数据结构 清华大学出版社 严蔚敏、吴伟民版,高清带目录PDF。
2021-04-28 18:41:07 29.15MB 数据结构 严蔚敏 吴伟民
1
C语言实现的词索引表程序:IndexBook。C语言实现按照索引插入并查找元素。严蔚敏建立词索引表:严蔚敏数据结构C语言实现,串操作应用举例中的词索引表例子,由于作者没给出完整源码,自己写了一个比较完整的。
2021-04-28 16:01:06 292KB 词索引表 数据结构 String
1