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

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

于 2022-08-07 发布 文件大小:32.24 kB
0 147
下载积分: 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 个回复

  • data structure 2nd edition (C) of the source code, such as the purchase of this...
    数据结构第二版(C++)上的源程序代码,如买了这本书的,可下载-data structure 2nd edition (C) of the source code, such as the purchase of this book, downloadable
    2023-09-04 01:50:03下载
    积分:1
  • 包括很的VFP中使用的控件,包括按钮、菜单位、通信等控件,并带有示例,绝对超值。...
    包括很的VFP中使用的控件,包括按钮、菜单位、通信等控件,并带有示例,绝对超值。-There are lots of controls used in VFP, including buttons, menu, communication and so on, and also give the corresponding demonstrations. It s quite absolute overflow.
    2022-02-25 10:54:05下载
    积分:1
  • 这是一个公交查询系统的简单设计,其中实现了根据车次号查站点以及根据起始与终止站点查询车次的两个模块功能。另外,还包含一个后台管理控制台,负责维护数据库的信息,具...
    这是一个公交查询系统的简单设计,其中实现了根据车次号查站点以及根据起始与终止站点查询车次的两个模块功能。另外,还包含一个后台管理控制台,负责维护数据库的信息,具备了比较完善的数据库维护功能。数据库的备份以及连接数据库的文件在原码文件中,运行前请注意设置-This is a transit system for a simple design, which achieved under 000, and site investigations under the threshold and termination site for the two trips module function. In addition, the background also includes a management console, responsible for the maintenance of the information in the database, with a fairly complete database maintenance functions. The database backup, and connecting to the database code in the original paper document, running to set up the former
    2023-03-12 09:40:04下载
    积分:1
  • hello everybody, i hope the document can help for you learn visual basic
    hello everybody, i hope the document can help for you learn visual basic
    2022-08-18 01:00:24下载
    积分:1
  • 票的形式
    ticket form using WCF transfer data between client and server .client send encrypted date to server, server decrypted and return back to client. just brief introduction of WCF and ticket form
    2023-03-04 04:45:02下载
    积分:1
  • 奥莱理
    OReilly - COM and .NET Component Services Source Code-OReilly- COM and. NET Component Services Source Code
    2022-05-13 03:11:23下载
    积分:1
  • 可精确到1/1000秒,并集成了很多计时功能
    可精确到1/1000秒,并集成了很多计时功能-Can be accurate to 1/1000 second, and integrates a lot of time function
    2022-01-31 04:55:21下载
    积分:1
  • 文件ST_CW_Ambg定义了模糊函数的表达式,以相对带宽B为参数。 2.文件MyFigure为运行文件,它调用ST_CW_Ambg中定义的函数作图。...
    文件ST_CW_Ambg定义了模糊函数的表达式,以相对带宽B为参数。 2.文件MyFigure为运行文件,它调用ST_CW_Ambg中定义的函数作图。-ST_CW_Ambg document defines the ambiguity function of the expression to the relative bandwidth B for the parameters. 2. MyFigure running document files, it calls ST_CW_Ambg defined mapping function.
    2023-04-25 12:10:03下载
    积分:1
  • GL的配置头文件,其中包括各种.h文件,对于图像图形会很有用的。...
    GL的配置头文件,其中包括各种.h文件,对于图像图形会很有用的。-GL" s configuration header file, including all types. H file, for image and graphics will be very useful.
    2022-09-05 22:05:03下载
    积分:1
  • SNMP示例程序
    Net-snmp是一个开源代码,我所使用的版本为5.4.1,但是帮助文档不够详尽,相关资料甚少,希望这篇文章对刚接触这方面的人有所帮助,我也是刚接触net-snmp,有很多不懂的地方,希望有达人指点。 首先要编译整个工程,生成静态库文件,否则后面的工作不能进行。 打开net-snmp-5.4.1win32win32.dsw,我使用的环境为VS2003,需要对所有的项目进行转换。 打开snmptrap项目,观察其静态库引用路径可以发现它的路径配置为../lib/debug,这也正是生成项目后产生的lib文件的路径。自己项目的库文件引用配置路径可以参考snmptrap项目。 刚下载的程序包是不包含库文件的,需要自己生成。先后生成libagent、libhelpers、libnetsnmptrapd、libsnmp、netsnmpmibs五个项目,相应会生成五个静态库文件,包括:netsnmp.lib、netsnmpagent.lib、netsnmphelpers.lib、netsnmpmibs.lib和netsnmptrapd.lib。没有这些静态库文件就不能生成整个解决方案,这也正是直接生成解决方案不能成功的原因。好了,现在可以重新生成整个解决方案了。如果这步成功了那么就可以开始自己的工作了。 自己的项目的配置属性可以参考项目snmptrap或者项目snmptest来配置。下面这段代码是一段简单的测试程序,可以正常发送trap包到目标主机162端口,可以在此基础上根据自己的实际需要修改。 
    2022-03-15 11:28:27下载
    积分:1
  • 696518资源总数
  • 106253会员总数
  • 14今日下载