登录
首页 » 数据结构 » 自创的算法,输入表达式,建立二叉树的程序,然后输出前缀中缀后缀表示法,利用的对表达式的分割与递归实现输入,同时这也是一个完整的波兰式转换程序,相当稳健...

自创的算法,输入表达式,建立二叉树的程序,然后输出前缀中缀后缀表示法,利用的对表达式的分割与递归实现输入,同时这也是一个完整的波兰式转换程序,相当稳健...

于 2022-01-25 发布 文件大小:4.12 kB
0 159
下载积分: 2 下载次数: 1

代码说明:

自创的算法,输入表达式,建立二叉树的程序,然后输出前缀中缀后缀表示法,利用的对表达式的分割与递归实现输入,同时这也是一个完整的波兰式转换程序,相当稳健-own algorithm, the importation of expression, the establishment of the binary tree and then output the suffix prefix which is made up of the method, using the right expression Segmentation and recursive input, and this was also a Polish integrity of the conversion process, sound

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 校友信息系统
    我的项目处理证书的校友信息系统,可以 upadate 删除和插入新数据,有时要搜索特定目的
    2022-02-15 19:46:15下载
    积分:1
  • A memory database system writing by a Russian with good reference worth.
    一个俄国人写的内存数据库系统,非常具有参考价值-A memory database system writing by a Russian with good reference worth.
    2022-10-30 09:50:02下载
    积分:1
  • 该软件前台用的是DELPHI7后台用的是SQLSERVER2000,用了些第三方控件,库文件在data文件夹里!...
    该软件前台用的是DELPHI7后台用的是SQLSERVER2000,用了些第三方控件,数据库文件在data文件夹里!-prospects of the software used is the background DELPHI7 Sqlserver2000 yes, used some third-party control, data in the database file folders Lane!
    2022-06-29 11:28:54下载
    积分:1
  • 中二叉树用c实现的算法
    数据结构中二叉树用c实现的算法-binary tree data structure used to achieve the algorithm c
    2022-08-03 03:06:52下载
    积分:1
  • /*字三角形问题 问题描述: 给定一个由n行字组成的字三角形如下图所示。试设计一个算法,计算出从三角形的顶至底的一条路径,使该路径经过的字总和最大。 7...
    /*数字三角形问题 问题描述: 给定一个由n行数字组成的数字三角形如下图所示。试设计一个算法,计算出从三角形的顶至底的一条路径,使该路径经过的数字总和最大。 7 3 8 8 1 0 2 7 4 4 4 5 2 6 5 编程任务: 对于给定的由n行数字组成的数字三角形,编程计算从三角形的顶至底的路径经过的数字和的最大值-/* Digital triangle Issue Description : given an OK by the number n of triangular figures shown in the diagram below. Design of a test algorithm, calculated from the top of the triangle to the end of a path, the path through the largest sum of the figures. 7 3 8 8 1 0 2 7 4 4 4 5 2 6 5 programming tasks : for a given n line by the number of digits triangle, triangle programming calculated from the top to the bottom of the path through the figures and the maximum
    2022-09-23 22:05:03下载
    积分:1
  • 堆栈之后缀表达式求值
    此程序用的是后缀表达式求值的方法,其中用到了一个栈,而中缀表达式求值需用到两个栈(操作数栈和操作符栈),所以阅读程序前提是了解中缀表达式和后缀表达式 之间的转换,和后缀表达式求值的过程。关于他们之间的转换,我的概括为:中缀表达式:a*(b+c)-d/f  ,先做b+c,即bc+;再做a*(b+c),即abc+*;然后做d/f,即df/; 最后做a*(b+c)-d/f,得abc+*df/-。关于后缀表达式求值过程请参照你的《数据结构指导书》P60~62(下文所指参照页均在此书)。程序里中有些我说的可有可无的东西,我已经说明 程序里只给出了+ - * / 四种运算,其它运算符若需要, 可向程序里插入。你的指导书堆栈实验里提示用到了“运算符重载”,所以添加其他运算时,有可能用到重载,但这里的四则运算我没用到,运算符重载是很重要的
    2022-11-10 19:15:04下载
    积分:1
  • 中的一个试验程序,实现简单的校园导游图功能,提供查找最短路径功能。...
    数据结构中的一个试验程序,实现简单的校园导游图功能,提供查找最短路径功能。-data structure of a test procedures, a simple guide campus map function, providing the shortest path search function.
    2022-04-17 12:13:54下载
    积分:1
  • access dao
    access dao 数据库-access dao database
    2022-08-06 16:36:00下载
    积分:1
  • 图书馆管理系统
    图书馆管理系统被实施的 java 平台有利于机构和图书馆数据通过计算机系统进行管理。在本场景中图书馆在手册中维护信息记录,他没有有效的方法。随着软件应用程序使用在我们日常的生活发展越来越多像这样的应用程序将简单任务,节省大量时间。使用此系统整个库数据在数据库中维护,只是所使用的软件应用程序用户可以找出的书籍图书馆与出动搜寻整个媒体库中的可用列表。同样这个应用程序还保持用户采取了书籍和返回日期的详细信息和用户详细信息。
    2022-03-13 09:06:57下载
    积分:1
  • 1.定义顺序栈的 2.编写函实现的栈的初始化、入栈、出栈、判断栈是否为空的算法,并应用与表达式的括号匹配检测。 3.定义队列的链式...
    1.定义顺序栈的数据结构 2.编写函数实现的栈的初始化、入栈、出栈、判断栈是否为空的算法,并应用与表达式的括号匹配检测。 3.定义队列的链式数据结构 4.编写函数实现链队列的入队列、出队列算法-1. Stack data structure defines the order of 2. Write a function to achieve the initialization of the stack, stack, out of the stack, to determine whether the stack is empty the algorithm, and application and matches the test expression in parentheses. 3. Chain data structure defines queue 4. Write a function to achieve chain of queues into queue, a queue algorithm
    2022-02-01 19:13:46下载
    积分:1
  • 696516资源总数
  • 106432会员总数
  • 11今日下载