Welcome![Sign In][Sign Up]
Location:
Search - 数据队列

Search list

[CommunicationSOCKET服务器(队列算法)

Description:

SOCKET服务器,支持多客户端,含协议判断处理.

每个客户端有独立的数据队列做BUFFER,

采用异步SOCKET方式接收数据.

传上来换点分!对初学都应该还算是比较全面的.含全部源代码.


Platform: | Size: 144753 | Author: elong2004 | Hits:

[Documents数据结构讲义

Description: 1.算法 2.线性表 3.栈和队列 4.数组 5.树 6.图 7.查找 8.排序
Platform: | Size: 1039826 | Author: goyisking | 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:

[SourceCodevxworks 自定义数据队列的实现

Description: 实现了 自定义的 数据缓冲队列,具有良好的扩展性。 利用用户保留内存进行数据缓冲,避免内存碎片
Platform: | Size: 5826 | Author: yinhuan99@gmail.com | Hits:

[Data structs队列

Description: 数据结构的运算方法-data structure computing methods
Platform: | Size: 1024 | Author: tqm | Hits:

[Data structs数据结构算法与应用-C__语言描述

Description: 本书是关于计算机科学与工程领域的基础性研究科目之一——数据结构与算法的专著。 本书在简要回顾了基本的C++ 程序设计概念的基础上,全面系统地介绍了队列、堆栈、树、图等基本数据结构,以及贪婪算法、分而治之算法、分枝定界算法等多种算法设计方法,为数据结构与算法的继续学习和研究奠定了一个坚实的基础。更为可贵的是,本书不仅仅介绍了理论知识,还提供了50多个应用实例及600多道练习题。 本书内容广博权威,结构清晰合理,是一本全新的有关数据结构与算法的教材,对于计算机科学与工程领域的从业人员也是一本很好的参考书。-the book is on the computer science and engineering fields, the basis for one of the subjects of study-- data structure and algorithm monographs. The book in a brief review of the basic design concept C program on the basis of a comprehensive and systematic introduction of the queue, stack, trees and map basic data structure and the greedy algorithm, divide and conquer algorithm, branch-and-bound algorithm multiple algorithm design methods, data structures and algorithms for continuous learning Research and lay a solid foundation. Even more valuable is that the book not only on the theoretical knowledge but also provided more than 50 application examples and more than 600 Exercises Road. The contents broad authority, a clear and reasonable structure, a new data structure and algorithm mat
Platform: | Size: 11777024 | Author: 周小川 | Hits:

[Data structs数据结构算法集---C++语言实现

Description: 常用的C++数据结构算法,包括队列、堆栈、链表...等.以模板类型式实现-C common data structure algorithms, including queue, stack, etc. List .... To achieve template-type
Platform: | Size: 7168 | Author: 新康 | Hits:

[Data structsC++Builder队列

Description: 用C++Builder写的数据结构队列问题的程序。希望对大家有用。-C Builder write queue data structure of the proceedings. We hope that the right useful.
Platform: | Size: 253952 | Author: | Hits:

[Data structs数据结构的停车场

Description: 利用栈和队列完成停车场的管理,数据结构的实习题目,并完成选做内容-use stack and queue complete parking management, and data structure of the internship topics, and complete the election to content
Platform: | Size: 25600 | Author: 陈大民 | Hits:

[Other用C++描述的各种数据结构算法

Description: 包含几十个有关数据结构算法的源代码 包括栈 队列 树图等 是初学者的最佳选择-contains dozens of the data structure of the algorithm source code stacks include Queue tree map is the best choice for beginners
Platform: | Size: 68608 | Author: 往往 | Hits:

[Data structs数据结构配套光盘

Description: 《数据结构》配书光盘 内容包括:线性表,栈和队列,串,数组与广义表,树,图,查找,排序等所以算法。 该光盘中配有《数据结构》一书中的所有算法、每一个算法的 C 程序(后缀为 .cpp 的文件)及可执行文件(后缀为 .exe 的文件)。-"data structure" assigned CD include : linear table, stack and queue, strings, arrays and broad scale tree, map, search, sort, etc. So algorithm. The CD-ROM equipped with a "data structure," a book of all the algorithm, the algorithm for each one C (suffix. Cpp files) and the executable file (wayward. Exe files).
Platform: | Size: 2952192 | Author: mars | Hits:

[GUI Develop数据结构及算法经典源程序集

Description: 数据结构经典算法源码,包括二叉数,队列,栈.应有尽有-data structure classical algorithm source code, including the number two forks, queue, stack. Everything
Platform: | Size: 309248 | Author: | Hits:

[Data structs数据结构实验程序

Description: 包括插入法查找树生成程序、树的队列法层次遍历、用链式栈对树中序遍历、制作二插查找树的镜像副本-including the insertion procedure generation search tree, the tree traversal level cohort method, using chain stack of tree traversal, interpolation search produced two mirror copies of the tree.
Platform: | Size: 3072 | Author: 王荣枫 | Hits:

[VC/MFCC语言描述-数据结构算法及应用

Description: 本书是关于计算机科学与工程领域的基础性研究科目之一——数据结构与算法的专著。 本书在简要回顾了基本的C++ 程序设计概念的基础上,全面系统地介绍了队列、堆栈、树、图等基本数据结构,以及贪婪算法、分而治之算法、分枝定界算法等多种算法设计方法,为数据结构与算法的继续学习和研究奠定了一个坚实的基础。更为可贵的是,本书不仅仅介绍了理论知识,还提供了50多个应用实例及600多道练习题。 本书内容广博权威,结构清晰合理,是一本全新的有关数据结构与算法的教材,对于计算机科学与工程领域的从业人员也是一本很好的参考书。 -the book is on the computer science and engineering fields, the basis for one of the subjects of study-- data structure and algorithm expertise with. The book in a brief review of the basic design concept C program on the basis of a comprehensive and systematic introduction of the queue, stack, trees and Figure basic data structure and the greedy algorithm, divide and conquer algorithm, branch-and-bound algorithm multiple algorithm design method data structures and algorithms for continuous learning and research have laid a solid foundation. Even more valuable is that the book not only of theoretical knowledge, also provided more than 50 application examples and more than 600 Exercises Road. The contents broad authority, a clear and reasonable structure, a new data structure and algorithm
Platform: | Size: 11776000 | Author: 猫扑 | Hits:

[Windows Develop循环队列

Description: 数据结构的一个算法,请参考,可以改进。happyforever@people.com.cn-data structure of an algorithm, please refer to, can be improved. Happyforever@people.com.cn
Platform: | Size: 183296 | Author: yxw | Hits:

[Com Portqueue0

Description: 数据队列的中间件,用于串口传输数据,实现串口通信-cohort data middleware for the serial transmission of data, Serial Communication
Platform: | Size: 3072 | Author: | Hits:

[Data structs循环队列

Description: 数据结构,是循环队列的创建,只有循环队列,可以直接使用(Data structure, is the creation of a circular queue, only the loop queue, you can directly use)
Platform: | Size: 1024 | Author: 123345 | Hits:

[Data structs栈和队列的链接

Description: 数据结构实验 栈和队列的连接实验 ①编写程序实现循环队列的初始化、入队和出队操作 ②编写程序实现将一个任意的十进制数转换成对应的二进制数 要求: ①用栈的基本操作来实现(具体栈的存储结构可用顺序栈也可用链栈) 十进制数由键盘输入,输出对应的二进制数。 ②在初始化队列后,利用入队操作构建具有n个元素的队列并依次输出队列中的元素。在构建的具有n个元素的队列中,执行出队操作,输出出队后队列中的剩余元素(Data structure experiment stack and queue connection experiment)
Platform: | Size: 1024 | Author: 蚊子酱 | Hits:

[Other数据结构

Description: 数据结构综合性实验,包含顺序表、栈、队列等应用(Comprehensive experiment of data structure)
Platform: | Size: 3528704 | Author: Tortoise. | Hits:

[Embeded-SCM DevelopUART带数据队列

Description: stm32F103串口通信UART带数据队列(Stm32F103 serial communication UART with data queue)
Platform: | Size: 1249280 | Author: sukoo | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net