搜索资源列表
Manual
- 本课件是一个动态演示数据结构算法执行过程的辅助教学软件, 它可适应读者对算法的输入数据和过程执行的控制方式的不同需求, 在计算机的屏幕上显示算法执行过程中数据的逻辑结构或存储结构的变化状况或递归算法执行过程中栈的变化状况。整个系统使用菜单驱动方式, 每个菜单包括若干菜单项。每个菜单项对应一个动作或一个子菜单。系统一直处于选择菜单项或执行动作状态, 直到选择了退出动作为止。-This courseware is a dynamic data structure algorithms demonst
DataStructureAlgorithm
- 数据结构和算法,非常经典,讲的很详细!第一部分 基础知识 第一章 C++程序设计 第二章 程序性能 第二部分 数据结构 第三章 数据描述 第四章 数组和矩阵 第五章 堆栈 第六章 队列 第七章 跳表和散列 第八章 二叉树和其他树 第九章 优先队列 第十章 竞赛树 第十一章 搜索树 第十二章 图 第三部分 算法设计方法 第十三章 贪婪算法 第十四章 分而治之算法 第十五章 动态规划 第十六章 回
DataConstructure
- 学习数据结构的一本宝典,各个章节详细的PPT内容,还包括了递归、哈弗曼编码、链表、树、图、栈与队列等的Flash动画演示,让我们能够更好的感官理解数据结构的机理。对于数据结构的学习很有帮助。-Data Constructure
maze
- 可视化迷宫问题,数据结构练习,堆栈的应用-Visualization maze
keyu
- 设计哈希表实现电话号码查询系统 利用《数据结构》课程的相关知识完成一个具有一定难度的综合设计题目,利用C/C++语言进行程序设计,并规范地完成课程设计报告。通过课程设计,巩固和加深对线性表、栈、队列、字符串、树、图、查找、排序等理论知识的理解;掌握现实复杂问题的分析建模和解决方法(包括问题描述、系统分析、设计建模、代码实现、结果分析等);提高利用计算机分析解决综合性实际问题的基本能力。
Data_Structure_C
- 基本数据结构的C实现。包括: (1)线性顺序表 (2)单链表 (3)双向循环链表 (4)顺序栈 (5)链式队列 (6)循环队列 (7)二叉树的先序、中序、后序的递归遍历和非递归遍历。-C-realization of the basic data structure. Include: (1)Sq_List (2)Linked_List (3)Du_linkedlist (4)Sq_Stack (5)Linked_Queue (6)Cycl
PortCourt
- 数据结构实验代码 停车场问题 是栈和队列的应用 停车场和便车道分别由栈和队列构成。 -Data structure code parking problem is the application of stacks and queues by parking lots and then Drive form stacks and queues.
1
- 这份资料是关于数据结构的算法的详细讲解,里面还有针对栈和队列的视频讲解-This information is about the data structure of the algorithm explained in detail, there is also a video for explanation stacks and queues
SHUJUJIEGOU
- 数据结构C语言版 课件 很详细 包括 栈 队列 树 等。-C-language version of courseware data structure in detail, including the stack queue trees.
ccc
- 数据结构中有关栈的应用,可运行可执行无错误,希望对大家有帮助-Stack data structure in relation to the application executable can run without error, we want to help
stack
- 数据结构中栈的类定义,通过类模板实现了栈的基本功能-Stack data structure in the class definition, through the stack class template implements the basic functions of
structure
- 数据结构中单链表的创建和栈的创建,用C语言实现创建(Data structure in the creation of single-linked list and stack creation, with the C language to achieve the creation)
数据结构
- 数据结构基本代码,包括了栈、队列、链表、递归等基本知识,适合初学者(basic code of data structure, suitable for beginners)
所有程序
- 一些基础的数据结构算法的C语言程序实现实现,比如队列、栈等(Some basic data structure algorithms are implemented in C language, such as queues, stacks, etc.)
行编辑
- 数据结构 C语言 栈 实现行编辑 严蔚敏版数据结构 C语言 栈 实现行编辑(Data structure, C language stack, current editing)
bank queue
- 运用数据结构中的栈结构,实现模拟银行排队的功能(Using the stack structure of data structure, the function of simulating Bank Queuing is realized)
SqStack
- 数据结构顺序栈的存储结构和基本操作的实现(The storage structure of the data structure sequence stack and the implementation of the basic operation)
1-3 StackSort
- 描述 栈是一种强大的数据结构,它的一种特殊功能是对数组进行排序。例如,借助一个栈,依次将数组1,3,2按顺序入栈或出栈,可对其从大到小排序: 1入栈;3入栈;3出栈;2入栈;2出栈;1出栈。 在上面这个例子中,出栈序列是3,2,1,因此实现了对数组的排序。 遗憾的是,有些时候,仅仅借助一个栈,不能实现对数组的完全排序。例如给定数组2,1,3,借助一个栈,能获得的字典序最大的出栈序列是3,1,2: 2入栈;1入栈;3入栈;3出栈;1出栈;2出栈。 请你借助一
datastructure
- 部分数据结构的实现,以及应用(包括二叉树、父指针表示树、链表、栈、队列、以及一个汉诺塔问题算法)(The implementation of some data structures and its application)
2017-6-13 数据结构及算法模块
- 易语言代码实现部分数据结构源码,包含堆排序,快速排序,归并排序,小根堆,大根堆,树,栈等(Easy language code part data structure source code, including heap sort, quick sort, merge sort, heap min, Gen, tree, stack etc.)