登录
首页 » Windows开发 » 完成堆栈抽象数据类型的顺序、链式表示与实现。实现功能:数值转换,计算器(表达式求值),迷宫求解,判断某个字符串是否是回文...

完成堆栈抽象数据类型的顺序、链式表示与实现。实现功能:数值转换,计算器(表达式求值),迷宫求解,判断某个字符串是否是回文...

于 2022-08-07 发布 文件大小:32.24 kB
0 171
下载积分: 2 下载次数: 1

代码说明:

完成堆栈抽象数据类型的顺序、链式表示与实现。实现功能:数值转换,计算器(表达式求值),迷宫求解,判断某个字符串是否是回文 -Completion of the stack abstract data type of the order, said that with the realization of the chain. The realization of functions: numerical conversion calculator (expression evaluation), to solve the maze to determine whether a string is a palindrome

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

发表评论

0 个回复

  • 系统工具,最新系统维护工具,绿色版,无需安装。
    系统工具,最新系统维护工具,绿色版,无需安装。-fdsafdfdafdsaf
    2022-03-19 17:52:57下载
    积分:1
  • 人工智能中的有关Wumpus世界的源程序 功能非常强大
    人工智能中的有关Wumpus世界的源程序 功能非常强大-artificial intelligence of the Wumpus source in the world is very powerful
    2022-01-25 17:54:47下载
    积分:1
  • A组 用汇编语言实现:在屏幕上显示: SIN(X)+345*X/67 X=? REXUILT= 等待输入一个任意的十进制数X(假设每个数不...
    A组 用汇编语言实现:在屏幕上显示: SIN(X)+345*X/67 X=? REXUILT= 等待输入一个任意的十进制数X(假设每个数不超过三位),计算上述表达式的结果,将该结果显示出来:对于XIN(X)的计算结果要求采用子程序编写,主程序用于输入X和显示结果。 B组: 汇编程序写一个能与PC当前运行的程序进行分时操作的程序,程序的功能是演奏“五星红旗迎风飘扬”。并设置有热键,可随时终止或恢复演奏。 C组: 用汇编程序编程编写一个动画程序:有一架飞机在显示屏幕的上方,从左至右,忽高忽地,周而复始的飞行,屏幕下方设有一门高射炮,该炮可人工控制左右移动,人工控制空格键发射炮弹,炮弹命中飞机后,声光大作。(要求使用图形显示方式) -A group Using assembly language to achieve: on the screen: SIN (X)+345* X/67 X =? REXUILT = Waiting for input an arbitrary decimal number X (the assumption that the number of not more than three each), calculated the results of the above expression, the results are displayed: For XIN (X) requires the calculation of the results of the preparation subroutine, main program for Enter the X and the result will be displayed. B: Assembler to write a PC currently running with the process time-sharing operating procedures, procedures for the function is to play "five-star red flag fluttering in the wind." And set up hotkeys, may terminate
    2022-04-25 18:27:40下载
    积分:1
  • Windows Forms Programming with C# windows Form 编程教程 源码
    Windows Forms Programming with C# windows Form 编程教程 源码-Windows Forms Programming with C# Windows Form programming tutorial source
    2022-05-24 16:08:05下载
    积分:1
  • wince 5.0 based on written personal java virtual Rubik
    wince 5.0上基于personal java写的的虚拟魔方,可以自动拼图 需安装NSIcom的虑拟机 CrE-ME 之后直接双击jar文件即可。-wince 5.0 based on written personal java virtual Rubik
    2022-06-19 23:29:09下载
    积分:1
  • 本程序允许用户使用不同的XML,选择在左面显示的样式页,右面的数据...
    本程序允许用户使用不同的XML,选择在左面显示的样式页,右面的数据-This demo allows the user to surf through different XML documents and apply different XSL stylesheets to those documents. Choose an XML document and a XSL stylesheet on the left and display the data on the right.
    2022-02-04 11:53:48下载
    积分:1
  • 这是韩国的KDC数码硬盘录像系统(880系列)的驱动,
    这是韩国的KDC数码硬盘录像系统(880系列)的驱动,-This is South Korea"s KDC digital video disk system (880 series), the driven,
    2023-01-23 12:05:03下载
    积分:1
  • This is a game that is to write a procedure to understand
    这是有一个比赛题,是写出一个看不懂的程序-This is a game that is to write a procedure to understand
    2022-07-18 10:17:37下载
    积分:1
  • 红外遥控计算器
    红外遥控计算器红外遥控计算器红外遥控计算器红外遥控计算器红外遥控计算器红外遥控计算器红外遥控计算器红外遥控计算器红外遥控计算器红外遥控计算器
    2023-02-13 09:50:04下载
    积分:1
  • 十字链表是这样构成的:用链表模拟矩阵的行(或者列,这可以根据个人喜好来定),然后,再构造代表列的链表,将每一行中的元素节点插入到对应的列中去。书中为了少存几个表...
    十字链表是这样构成的:用链表模拟矩阵的行(或者列,这可以根据个人喜好来定),然后,再构造代表列的链表,将每一行中的元素节点插入到对应的列中去。书中为了少存几个表头节点,将行和列的表头节点合并到了一起――实际只是省了几个指针域,如果行和列数不等,多余的数据域就把这点省出的空间又给用了。这点小动作让我着实废了半天劲,个人感觉,优点不大,缺点不少,不如老老实实写得象个十字链表,让人也好看一些,这是教科书,目的是教学。实在看得晕的人,参阅C版的这部分内容,很清晰。我也不会画图,打个比方吧:这个十字链表的逻辑结构就像是一个围棋盘(没见过,你就想一下苍蝇拍,这个总见过吧),而非零元就好像是在棋盘上放的棋子,总共占的空间就是,确定那些线的表头节点和那些棋子代表的非零元节点。最后,我们用一个指针指向这个棋盘,这个指针就代表了这个稀疏矩阵-Crusaders is the form : Chain Simulation matrix rows (or out, This can be based on individual preferences to be), and then constructed on behalf of the chain out, Each line of the elements inserted into the node corresponding to the series. To book a few small depositors table first node, out of line and the first node table to merge together-- the reality is that a number of indicators provincial jurisdictions, if the number of rows and columns ranging, redundant data domain put this province has granted the use of the space. This little trick I did waste a half-day efforts, personal feeling, not merit, a lot of shortcomings,
    2022-03-13 05:45:31下载
    积分:1
  • 696516资源总数
  • 106918会员总数
  • 4今日下载