Data-Structure icon indicating copy to clipboard operation
Data-Structure copied to clipboard

《数据结构》-严蔚敏.吴伟民-教材源码与习题解析

Results 8 Data-Structure issues
Sort by recently updated
recently updated
newest added

(#26)修复Clion下的SqQueue的DestroyQueue返回

https://github.com/kangjianwei/Data-Structure/blob/fbf7c3ce1b88d2d2498e0a4a920b8656fb0c9fc8/VisualC%2B%2B/CourseBook/0308_SqQueue/SqQueue.c#L48 最后 return 的应该是 OK 吧,clion版本同

BUG

// 如果调度序列为空,但是入口处存在未调度的车厢,或者中转栈里存在未处理的车厢,则表示发生错误 if(seq[k] == '\0' && (En[i] || StackEmpty(S))) 是不是应该是 if(seq[k] == '\0' && (En[i] || !StackEmpty(S)))

BUG

假设点集 Vertex 中所含子集 A,对于从 A 出发的边集 Edge,若选定其中权重最小的边 Em,Em 指向点 B,可知: - Edge 中不存在权重小于 Em 的边 - 对于 Edge 中除 Em 外的任意边 E\* - 若 *weight( E\* ) > weight( Em...

https://github.com/kangjianwei/Data-Structure/tree/master/CLion clion下readme文件图片无法查看

请问后续会更新数据结构书上查找和排序的内容吗?

在C语言标准库中,确实没有名为strlwr的函数来将整个字符串转换为小写字母。strlwr函数实际上是Windows系统特有的扩展函数,用于将字符串中的所有字符转换为小写。