资源列表
冒泡
- 冒泡排序算法,最简单的数据结构排序算法,希望大家喜欢(Bubble sort algorithm)
task3
- 计算最短路径的算法。本实验实现dijkstra算法。图存储采用了数组存储结构。(Dijkstra algorithm, the shortest path algorithm. This experiment implements the Dijkstra algorithm. The array storage structure is used for graph storage)
BubbleSort
- 讲解冒泡排序基本概念,分析每步过程,并实现冒泡排序(Explain the basic concept of bubble sort, analyze every step, and implement bubble sort)
MergeSort
- 讲解归并排序基本概念,分析每步过程,并实现归并排序(Explain the basic concepts of merge sort, analyze each step process, and implement merge sort)
maze
- 随机输出一个迷宫,并显示路径,不能走出显示x(Random output of a maze, and show the path)
数据结构各种算法实现(C++模板)
- 算法导论c语言实现, 清华大学版本, 欢迎使用(the introduction of algorithm solution with c)
RedBlackTree
- 自己使用C++实现的一个简单的红黑树,可用codeblocks直接打开(Own simple red black tree)
新建 WinRAR ZIP 压缩文件
- 建立二叉树。有三个步骤,并且进行前序、中序、后序遍历。(Establish two trees, and preorder, middle, and post traversal)
josephus problem
- 分别通过顺序表和链表的方式,利用C++实现约瑟夫斯问题(C++ implementation of the Josephus problem)
Parking lot problem
- 设有一个可以停放n辆汽车的狭长停车场,它只有一个大门可以供车辆进出。车辆按到达停车场时间的早晚依次从停车场最里面向大门口处停放(最先到达的第一辆车放在停车场的最里面)。如果停车场已放满n辆车,则后来的车辆只能在停车场大门外的便道上等待,一旦停车场内有车开走,则排在便道上的第一辆车就进入停车场。停车场内如有某辆车要开走,在它之后进入停车场的车都必须先退出停车场为它让路,待其开出停车场后,这些车辆再依原来的次序进场。每辆车在离开停车场时,都应根据它在停车场内停留的时间长短交费。如果停留在便道上的车未
sequential tables
- 编写一算法,实现两个顺序表的合并。(说明:将共同拥有的元素只存其一。)(Write an algorithm to achieve the merger of two sequential tables. (Descr iption: only one of the shared elements is stored.))
two tree
- 本程序中通过C++平台,实现二叉树的链式存储、遍历。(This procedure through the C++ platform, to achieve the two tree chain storage, traversal)