搜索资源列表
用栈设置密码
- 这个算法,是用来设置密码的,有数据结构中的栈来实现的。-The algorithm is used to set up passwords, and data structure of the stack to achieve.
用栈和递归求解两顶点的所有简单路径
- 用栈和递归求解两顶点的所有简单路径-using recursive solution stack and the two vertices all simple path
用栈实现10进制转8进制
- 用栈实现10进制转8进制-stack with a 10-band to band 8
简单的链的倒置(c++)
- 给定一条单向链,设计程序把链倒过来,并输出结果。要求直接在这条链上完成倒置操作,只可增设有限的几个辅助变量。 用栈的方法。
C++用栈解决八皇后问题
- 用站解决八皇后问题
停车场
- 我的数据结构的实验题,停车场,用栈和队列 模拟停车场,实现进车和出车-my data structure experiment, a car park, with Stack and Queue simulated car parks, to achieve progress and out of cars
用栈和递归求解两顶点的所有简单路径
- 用栈和递归求解两顶点的所有简单路径-using recursive solution stack and the two vertices all simple path
用栈实现10进制转8进制
- 用栈实现10进制转8进制-stack with a 10-band to band 8
顺序栈的基本操作
- 顺序栈的基本操作,一共9个,与吴伟民数据结构课本完全一致,用C实现-order stack the basic operation, a total of nine, and Xiulan WU Weimin textbooks data structure is fully consistent with achieving C
用C++描述的各种数据结构算法
- 包含几十个有关数据结构算法的源代码 包括栈 队列 树图等 是初学者的最佳选择-contains dozens of the data structure of the algorithm source code stacks include Queue tree map is the best choice for beginners
链栈的建立及出入栈
- 用链表结构完成堆栈的任务,使用时更加灵活方便-structure with the mandate to complete stack, use more flexible and convenient
用栈设置密码
- 这个算法,是用来设置密码的,有数据结构中的栈来实现的。-The algorithm is used to set up passwords, and data structure of the stack to achieve.
BROAD
- 马踏棋盘 采用栈和链 使用回溯发实现踏棋盘的路 实现8*8-Horse riding chessboard chain using stack and the use of back-fat way to achieve the realization of the chessboard Tap 8* 8
112233445566
- 停车场管理,用栈的方式进行的。记录进入、停车、出栈的情况。-Car park management, with stack manner. Records access, parking, a stack situation.
huiw.dsp
- 本程序是由vc编写的一个简单的回文代码,运用栈和队列存储表示-This procedure is vc prepared by a simple palindrome code, the use of stack and queue storage express
migong
- 本程序主要是用栈来实现迷宫问题。所用算法是非递归算法,输入为迷宫的行数和列数,然后在对应位置上输入其值(0表示该位置通,1表示该位置不通)。输出则是以三元组(i,j,d)的形式,其中(i,j)表示迷宫中的一个坐标,d表示走到下一坐标的方向,-This procedure is mainly used to achieve the maze problem stack. Algorithm used in a non-recursive
Car_parking
- 主要用栈和队列,实现一个模拟停车场的程序-Stacks and queues is mainly used to achieve a simulated car park program
maze
- 一个用栈写的走迷宫小程序,开发环境C++,有用的朋友可以拿去参考-Written by Maze with a stack of small procedures, development environment, C++, a useful reference to a friend is unspeakable. .
zhan
- 计算器的实现,可以进行加减乘除,利用栈编写,前后缀-Calculator to achieve, can be Math, prepared using the stack, the former suffix
栈和队列的链接
- 数据结构实验 栈和队列的连接实验 ①编写程序实现循环队列的初始化、入队和出队操作 ②编写程序实现将一个任意的十进制数转换成对应的二进制数 要求: ①用栈的基本操作来实现(具体栈的存储结构可用顺序栈也可用链栈) 十进制数由键盘输入,输出对应的二进制数。 ②在初始化队列后,利用入队操作构建具有n个元素的队列并依次输出队列中的元素。在构建的具有n个元素的队列中,执行出队操作,输出出队后队列中的剩余元素(Data structu