资源列表
贪心
- 贪心算法的应用:对地点运输的贪心算法实现(Application of greedy algorithm)
hastable_master
- hash table data structure in c language. Macro based.
哈夫曼树编码
- 哈夫曼树的实现,辛苦辛苦辛苦可惜,资产支持支持支持(ha fu m a n shu d e s h i x i an)
所有程序
- 一些基础的数据结构算法的C语言程序实现实现,比如队列、栈等(Some basic data structure algorithms are implemented in C language, such as queues, stacks, etc.)
BinaryTree
- 数据结构中二叉树的基础操作 掌握二叉树的链式存储结构及其相关操作的实现 掌握二叉树的先序、中序、后序的递归遍历算法 掌握二叉树的层次遍历非递归算法(Basic operation of two fork tree in data structure)
二叉树
- (1)构建一颗二叉树; (2) 实现二叉树中所有结点的左、右子树相互交换。(1) construct a two fork tree; (2) exchange the left and right subtrees of all nodes in the two fork tree.)
zhan
- 1) 建立栈并进行一些元素入栈,实现链栈的建立及入栈的基本操作; (2)实现某些元素的出栈,实现链栈的出栈的操作;(1) set up the stack and carry out some elements into the stack, to achieve the establishment of the chain stack and the basic operation of the stack; (2) the stack of some elements can be re
数据结构
- (1)建立链队列,并实现一些元素入队,实现链队列的建立和入队的基本操作; (2)实现某些元素出队,实现链队列的出队的基本操作((1) the establishment of the chain queue, and realize some basic elements into the team, and the team operation to achieve the establishment of the chain queue; (2) to realize some elem
tingchechang
- 问题描述: 设停车场是一个可停放n 辆汽车的狭长通道,且只有一个大门可供汽车进出。汽车在停车场内按车辆达到时间的先后顺序,依次由北向南排列(大门在最南端,最先达到的第一辆车停放在车场的最北端),若车场内已停满n辆汽车,则后来的汽车只能在门外的便道上等候,一旦有车开走,则排在便道上的第一辆车即可开入;当停车场内某辆车要离开时,在它之后进入的车辆必须先退车车场为它让路,待赶辆车开出大门外,其它车辆在按原次序进入车场,每辆停放在车场的车在它离开停车场时必须按它停留的时间长短叫纳费用。试为停
shu
- 大学软件工程数据结构课程设计二叉树实验三种遍历方法(curriculum design,structure data)
哈弗曼树6.0
- Huffman编码及译码。 1.掌握二叉树的二叉链表存贮结构。 2.掌握Huffman算法。(Huffman tree building, encoding and decoding)
07 - Linked Lists
- As we saw in the previous unit, one way to implement the list ADT was with an array. An alternate approach is what's called a linked list, a.k.a. a pointer-based list