搜索资源列表
windows_stack
- C++BUILDER编的可以在WINDOWS下运行的栈的演示程序-C BUILDER series in the Windows stack running under the demonstration program
factShow
- 数据结构的代码演示程序,利用栈的原理,将级数fact递归问题的执行过程以直观的形式演示出来。-data structure code demo program using the stack principle, Recursive series fact of the implementation process in the form of visual presentation out.
expression
- 用栈来演示带括号的+,-,*,/表达式运算(以#结尾!),并且演示栈的活动过 程。
biaodashi.cpp
- 表达式求值以字符序列的形式从终端输入语法正确的、不含变量的数据表达式。利用教科书表3.1给出的算符优先关系,实现对算术四则混合运算表达式的求值,并仿照教科书的例子3-1演示在求值中运算符栈、运算数栈、输入字符和主要操作的变化过程.
biaodashiqiuzhi
- 题目:设计一个题目,演示用算符优先法对算术表达式求值的过程。 概要设计 1、顺序扫描中缀算术表达式,当读到数字时直接将其送至输出队列中; 2、当读到运算符时,将栈中所有优先级高于或等于该运算符弹出,送至输出队列中,再将当前运算符入栈; 3、当读入左括号时,即入栈; 4、当读到右括号时,将靠近栈顶的第一个左括号上面的运算符全部一次弹出,送至输出队列中,再删除栈中的左括号。 5、使用VS栈来存储读入的操作和运算结果,然后进行数字字符到数值的转换。
MazePath_v4.0
- C语言 使用SDL 实现的迷宫求解演示程序。 使用栈,回溯法 包括制作地图,随机生成地图,求解过程演示。-C language realization of the use of SDL demo program to solve the maze. The use of stacks, including the production of backtracking map, randomly generated maps, the solution process demonstra
migong
- 数据结构中栈算法的简单应用,通过程序模拟迷宫的生成和寻找出口的动态演示过程-Data structure in a simple stack algorithm applications, the adoption of procedures for the generation and simulation of a maze to find the export dynamic demonstration
tree
- 二叉树回溯,利用栈实现,带界面演示,更加直观的查看每个时刻栈的情况。-Bintree back, using the stack to achieve, with the interface presentation and more intuitive view of the circumstances of each moment of the stack.
value
- 演示用算符优先法对中序算术表达式求值的过程。 程序执行的命令包括: (1)构造两个空栈,数栈和运算符栈;(2)输入一个中序算术表达式,表达式中数字进入数栈,运算符进入运算符栈;(3)将从键盘上输入的运算符与运算符栈中的运算符进行优先级比较;(4)将运算结果再放入数栈中;(5)结束。 -Demonstration by operators in order of priority on the arithmetic expression evaluation process. Pro
datastruct_flash
- 数据结构算法的flash动画演示,形象生动地说明了链表、栈、队列等操作的流程。-Data Structure Algorithm Animation flash, image vividly illustrates linked list, stack, queue operations, such as flow.
02-23-65
- 通过输入车厢系列的编号n,求出所有可能由此输出的长度为n的车厢系列,用入栈出栈的方法,实现车厢调度,并演示每一种出栈序列的过程。任务:假设停在铁路调度站入口处的车厢系列的编号依次为1,2,3,…n。设计一个程序,求出所有可能由此输出的长度为n 的车厢系列。-Series by entering the number of compartments n, the resulting output to derive all possible n the length of the train li
Stack_Queue
- Applet演示程序,栈是一种先进后出(FILO)的线性数据结构,先进后出的意思就是……举个例子吧-Applet demo, after the stack is an advanced out (FILO) of the linear data structure, advanced means of the following ... ... Let me give an example
Manual
- 本课件是一个动态演示数据结构算法执行过程的辅助教学软件, 它可适应读者对算法的输入数据和过程执行的控制方式的不同需求, 在计算机的屏幕上显示算法执行过程中数据的逻辑结构或存储结构的变化状况或递归算法执行过程中栈的变化状况。整个系统使用菜单驱动方式, 每个菜单包括若干菜单项。每个菜单项对应一个动作或一个子菜单。系统一直处于选择菜单项或执行动作状态, 直到选择了退出动作为止。-This courseware is a dynamic data structure algorithms demonst
Stack4
- 栈的实现 mfc 界面很好 功能齐全 挺好 动态演示-Stack in mfc fully functional interface, very good very good dynamic demonstration
huochechexiangchongpai
- 本程序演示的是一个火车车厢重排事件。从本程序中可以学习如何用栈来解决复杂的排列问题。-This is a demo program trains rearrangement of events. From this program can learn how to use the stack to solve complicated arrangement.
diaodu
- 2、 程序中用一个栈形象的表示为车厢的调度站。演示程序以用户和计算机的对话方式执行,即在计算机终端上显示“提示信息”之后,由用户在键盘上输入演示程序中规定的命令;相应的输入数据和运算结果显示在其后。程序的输入为整形数据,并且要在1—20之间,若超出此范围,会显示“输入错误”的提示信息。-2, the program that used the image of a stack for the car dispatch station. Demo program to computer users
maze
- 演示迷宫算法 利用栈 深度广度A*三种搜索算法 是个小程序-maze stack
Stack
- 设计实现数据结构的栈队列顺序存储动画演示过程-Design and implementation of data structures stored in the stack order of animation process queue
0000
- 一个数据结构演示的小程序,很形象,有关链表,栈,树,图,排序的各种算法逐步演示,有C和pascal两种语言。-A data structure shows a small program, it is the image, the linked list, stacks, trees, graphs, sorting the various algorithms to gradually demo of the two languages C and pascal.
算术表达式求值演示
- 用栈实现算术表达式求值,另有MFC制作的图形界面(Arithmetic expression evaluation by stack, and graphical interface made by MFC)