Welcome![Sign In][Sign Up]
Location:
Search - 数据结构C语言

Search list

[VC/MFC数据结构 C++ 语言描述

Description: 数据结构 C++ 语言描述
Platform: | Size: 20260695 | Author: blazeli@sina.com | Hits:

[Books数据结构C语言

Description: 《数据结构C语言》绝对学习C/C++的良师益友!
Platform: | Size: 7850737 | Author: ylzhuai | Hits:

[Books数据结构(C#语言版)

Description: 数据结构(C#语言版) 计算机程序语言书: 目 录 第1章 绪论 1 1.1 数据结构 1 1.1.1 学习数据结构的必要性 1 1.1.2 基本概念和术语 2 1.2 算法 7 1.2.1 算法的特性 7 1.2.2 算法的评价标准 8 1.2.3 算法的时间复杂度 9 1.3 数学预备知识 11 1.3.1 集合 11 1.3.2 常用的数学术语 11 1.3.3 对数 12 1.3.4 递归 12 1.4 C预备知识 13 1.4.1 指针 13 1.4.2 结构体 14 1.5 C#预备知识 15 1.5.1 接口 15 1.5.2 泛型编程 19 本章小结 24 习题 25 第2章 线性表 27 2.1 线性表的逻辑结构 27 2.1.1 线性表的定义 27 2.1.2 线性表的基本操作 28 2.2 顺序表 30 2.2.1 顺序表的定义 30 2.2.2 顺序表数据关系的语言描述 31 2.2.3 顺序表数据操作的语言描述 32 2.2.4 顺序表应用举例 42 2.3 单链表 46 2.3.1 单链表的定义 47 2.3.2 单链表数据关系的语言描述 48 2.3.3 单链表数据操作的语言描述 50 2.3.4 单链表应用举例 65 2.4 其他链表 73 2.4.1 双向链表 73 2.4.2 循环链表 76 本章小结 76 习题 77 第3章 栈和队列 78 3.1 栈 78 3.1.1 栈的定义及基本运算 78 3.1.2 顺序栈的存储和运算实现 80 3.1.3 链栈的存储和运算实现 85 3.1.4 栈的应用举例 90 3.2 队列 96 3.2.1 队列的定义及基本运算 96 3.2.2 循环顺序队列的存储和运算 实现 98 3.2.3 链队列的存储和运算实现 106 3.2.4 队列的应用举例 111 本章小结 113 习题 113 第4章 串和数组 115 4.1 串 115 4.1.1 串的基本概念及基本运算 115 4.1.2 串存储及基本运算实现 116 4.1.3 串的基本操作的实现 120 4.1.4 模式匹配 125 4.2 数组 131 4.2.1 数组的逻辑结构 131 4.2.2 数组的内存映像 132 本章小结 133 习题 133 第5章 树和二叉树 134 5.1 树 134 5.1.1 树的定义 134 5.1.2 树的相关术语 135 5.1.3 树的逻辑表示 136 5.1.4 树的基本操作 137 5.2 二叉树 138 5.2.1 二叉树的定义 138 5.2.2 二叉树的性质 139 5.2.3 二叉树的存储结构 141 5.2.4 二叉链表存储结构的语言 描述 143 5.2.5 二叉树的遍历 146 5.2.6 线索二叉树 150 5.3 树与森林 153 5.3.1 树的存储 153 5.3.2 树、森林与二叉树的转换 157 5.3.3 树和森林的遍历 160 5.4 哈夫曼树 160 5.4.1 哈夫曼树的基本概念 160 5.4.2 哈夫曼树的实现 162 5.4.3 哈夫曼编码 166 5.5 二叉树的应用举例 167 本章小结 171 习题 172 第6章 图 174 6.1 图的基本概念 174 6.1.1 图的定义 174 6.1.2 图的基本术语 175 6.1.3 图的基本操作 178 6.2 图的存储结构 179 6.2.1 邻接矩阵 179 6.2.2 邻接表 187 6.3 图的遍历 199 6.3.1 深度优先遍历 199 6.3.2 广度优先遍历 202 6.4 图的应用 205 6.4.1 最小生成树 205 6.4.2 最短路径 210 6.4.3 拓扑排序 216 本章小结 218 习题 219 第7章 排序 221 7.1 基本概念 221 7.2 简单排序方法 222 7.2.1 直接插入排序 222 7.2.2 冒泡排序 225 7.2.3 简单选择排序 226 7.3 快速排序 229 7.4 堆排序 233 7.5 希尔排序 240 7.6 表插入排序 242 7.7 归并排序 247 7.8 树型选择排序 251 7.9 基数排序 252 7.9.1 多关键码排序 252 7.9.2 链式基数排序 253 7.10 各种排序方法的比较与讨论 255 本章小结 256 习题 257 第8章 查找 259 8.1 基本概念和术语 259 8.2 静态查找表 259 8.2.1 顺序查找 260 8.2.2 有序表的折半查找 261 8.2.3 索引查找 265 8.3 动态查找表 266 8.3.1 二叉排序树 266 8.3.2 平衡二叉树 276 8.3.3 B-树和B+树 278 8.4 哈希表 285 8.4.1 哈希表的基本概念 286 8.4.2 常用的哈希函数构造方法 286 8.4.3 处理冲突的方法 288
Platform: | Size: 1345925 | Author: lovevicky | Hits:

[Data structs《数据结构(C语言版)习题集》答案

Description: 清华1992年版的数据结构的答案-Tsinghua University in 1992 version of the data structure of the answer
Platform: | Size: 84992 | Author: kuangfengd | Hits:

[Data structs数据结构C++

Description: 数据结构C++语言描术—清华大学出版的-data structure depicted in C language-publication of Tsinghua University
Platform: | Size: 274432 | Author: | Hits:

[Windows Develop数据结构C语言描述

Description: 数据结构中的一经典算法,可以在Turboc2下运行 不过要用到工程文件才能运行-a classcial algorithm of data structure,can be performed under TURBOC2, but need project file.
Platform: | Size: 39936 | Author: 天马行空 | Hits:

[VC/MFC数据结构—C语言版

Description: 在c环境下的对数据结构进行讲解,包含有例题及答案-date structure in C
Platform: | Size: 202752 | Author: | Hits:

[Data structs数据结构 (C语言版)严蔚敏

Description: 算法与数据结构,C语言版严蔚敏,清华大学出版社-algorithms and data structures, C-language version of Yan Wei Min, Qinghua University Press
Platform: | Size: 8146944 | Author: 撒嗯 | Hits:

[ConsoleC数据结构课程设计

Description: 数据结构C语言课程设计源代码 这是我花了一个星期独立编出来的课设,得了100分,整个专业就只 有三个满分!内含24点游戏,飞机订票系统和火车信息查询系统以及课 设论文,注释非常详细,相信对学习C语言和数据结构的同学大有帮助-data structure C language source code design courses that I spent a week down the independent class-based, had 100 points, on the whole, only three out! The game includes 24 points, aircraft and booking system for train information system and class-based papers, notes in great detail, I believe in learning C language and data structure of great help students
Platform: | Size: 319488 | Author: 谷穗 | Hits:

[GUI Develop《数据结构(c语言版)习题集》算法设计参考答案

Description: 数据结构的习题答案,供学习者参考。数据结构是学习编程的基础,希望对大家有帮助-data structure Exercise answer for learners reference. Data structure is the basis for learning programming, we hope to help
Platform: | Size: 64512 | Author: 南江涛 | Hits:

[Other数据结构c语言程序

Description: 数据结构c语言程序,对于学习数据结构和算法很有帮助的源码程序.-data structure c language program for learning algorithm and data structure helpful source programs.
Platform: | Size: 313344 | Author: 无可奉告 | Hits:

[Data structs数据结构C++语言描述

Description: 经典数据结构书籍 数据结构C++语言描述 的源代码 很难找的哦-classic books data structure data structure C++ language to describe the source code is very difficult to find the oh
Platform: | Size: 781312 | Author: 李作为 | Hits:

[VC/MFC数据结构C程序

Description: 数据结构C语言版的C语言程序收集.很实用的.珍藏版喔-data structure C language version of the C language collection procedures. Very practical. Oh 01/23/2006
Platform: | Size: 66560 | Author: zyj | Hits:

[VC/MFC《数据结构(c语言版)习题集1》

Description: 数据结构(严慰民)配套纯C代码 对数据结构学习很有帮助-data structure (Yan Wei) The matching pair of pure C code useful data structure study
Platform: | Size: 34816 | Author: | Hits:

[Internet-Network[数据结构(C语言版)].

Description: C语言的数据结构说明!!需要的可以来下载哦!(Data structure description of C language!! What you need can be downloaded!)
Platform: | Size: 26162176 | Author: Mr雷 | Hits:

[CSharp数据结构(C语言版·严蔚敏)·源码

Description: 数据结构 源码;C语言描述。数据结构(C语言版·严蔚敏)·源码sdjalfs(data structure jldasjlfjdslfdsadafslk)
Platform: | Size: 478208 | Author: taiws | Hits:

[Documents数据结构题集答案(C语言版)(严蔚敏-吴伟民著)

Description: 数据结构c语言版答案(严蔚敏,吴伟民),每一题答案都有,可作为最佳的参考(Data structure c language version answer)
Platform: | Size: 317440 | Author: 香烟哥 | Hits:

[source in ebook吴伟民等《数据结构(c语言版)》一书的全部源代码

Description: 吴伟民等《数据结构(c语言版)》一书的全部源代码,对于新手学习很有帮助(Wu Weimin, such as "data structure (C Language Edition)" the full source of the book, for novice learning is very helpful)
Platform: | Size: 658432 | Author: weitianyuan7 | Hits:

[Data structs《数据结构(C语言版)》严蔚敏+吴伟民+

Description: 这是数据结构C语言版的PDF文档,吴伟民(Data structure C language version PDF document)
Platform: | Size: 7857152 | Author: meyes | Hits:

[VC/MFC[数据结构(C语言版)].严蔚敏_吴伟民.扫描版带源码

Description: [数据结构(C语言版)].严蔚敏_吴伟民.扫描版带源码([Data Structure (C Language Version)]. Yan Weimin_Wu Weimin. Scanning Edition Source Code)
Platform: | Size: 29411328 | Author: 嘻哈哈哈a | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net