《数据结构及应用算法教程》配书光盘 1. 算法一览是由HTML页面形式的文件组织的,使用时系统需要安装Microsoft IE 5.0、Office 2000 Word和PowerPoint。读者可以从“算法一览”文件夹下的index.htm文件开始浏览。2. “程序设计示例”文件夹下汇集了本书第10章中八个示例的源代码。读者可以在配有Microsoft Visual C++5.0以上版本的环境中,通过重新建立工程文件来编译和运行。具体的细节步骤,可继续阅读“程序设计示例”文件夹下的Readme.doc文件。
上传时间: 2016-05-17
上传用户:jkhjkh1982
编辑、统计学生成绩的源程序:设有10个学生的成绩,要求统计<60, 60-69, 7 0-79, 80-89, 9 0-99, 100分各段成绩人数
上传时间: 2014-01-05
上传用户:royzhangsz
arm-linux-gcc交叉编译环境自动建立的shell,在运行之前只要按注释将相应需要的文件放到文件夹下即可,在redhat 9.0下测试通过
标签: arm-linux-gcc shell 交叉编译 环境
上传时间: 2016-07-07
上传用户:yyyyyyyyyy
关于 ZFC 框架的自述文件 2003.6.18 ====================================================================== 如何在PowerBuilder 开发环境中运行ZFC 框架。 1、文件 app.pbl 常用应用库; controls.pbl zfc 控件库; main.pbl 主要对象库; demo.pbl 演示程序库; 2、目录 DB 演示数据库; PSR 演示PB报表; 3、基于 ZFC 框架编写程序需要哪些文件和表: 引用main.pbl、controls.pbl、app.pbl 三个库 演示数据库中的Employee,EmployeeToFunction,Function,Profile 四个表; 演示数据库中的usp_DateGet,usp_EmployeeGet,usp_FunctionGet,usp_ProfileGet,usp_ProfileSet 五个存储过程; 如果您使用其他数据库,请移植表和存储过程。 4、PowerBuilder 9.0,Adaptive Server Anywhere 7 必须;
上传时间: 2016-08-13
上传用户:003030
基于嵌入式Linux系统的led驱动程序开发源程序及详细文档,开发环境:硬件:UP-NETARM2410-S嵌入式实验仪,PC pentium500以上,硬盘40G以上,内存大于128M。 软件:PC机操作系统redhat linux 9.0 + MINICOM+ ARMLINUX开发环境。使用c语言开发。
上传时间: 2013-12-01
上传用户:yyyyyyyyyy
在Linux下的服务器配置与管理,系统平台选用Redhat 9.0
上传时间: 2014-12-08
上传用户:离殇
业务管理:包括客房预订、入住登记、续住、换房、转账、其他服务提供、留言板、意见簿、走客结账、欠费结算。 ¯ 查询统计:包括历史单据、预订表、在住客人表、换房查询、转账查询、日经营状况、月收入状况、客房利用率、实时房态。-system design focus of this chapter describe the development of small PowerBuilder 9.0 Rooms Management System process, through the study of this chapter, readers should be familiar with PowerBuilder 9.0 TreeView control and the right mouse button menu of use, master GroupBox, SingleLineEdit, CommandButton, RadioButton, PictureButton controls such as the similarities and differences to further understanding of data objects window displays various occasions the application. System to complete the task Macr system maintenance include : corporate information, the operator management, change passwords, management succession, dictionary management. Macr basic information : Rooms management system for the basic information management (including new, modify or delete), which is the basic informat
上传时间: 2017-02-09
上传用户:songyue1991
业务管理:包括客房预订、入住登记、续住、换房、转账、其他服务提供、留言板、意见簿、走客结账、欠费结算。 ¯ 查询统计:包括历史单据、预订表、在住客人表、换房查询、转账查询、日经营状况、月收入状况、客房利用率、实时房态。-system design focus of this chapter describe the development of small PowerBuilder 9.0 Rooms Management System process, through the study of this chapter, readers should be familiar with PowerBuilder 9.0 TreeView control and the right mouse button menu of use, master GroupBox, SingleLineEdit, CommandButton, RadioButton, PictureButton controls such as the similarities and differences to further understanding of data objects window displays various occasions the application. System to complete the task Macr system maintenance include : corporate information, the operator management, change passwords, management succession, dictionary management. Macr basic information : Rooms management system for the basic information management (including new, modify or delete), which is the basic informat
上传时间: 2013-12-05
上传用户:开怀常笑
业务管理:包括客房预订、入住登记、续住、换房、转账、其他服务提供、留言板、意见簿、走客结账、欠费结算。 ¯ 查询统计:包括历史单据、预订表、在住客人表、换房查询、转账查询、日经营状况、月收入状况、客房利用率、实时房态。-system design focus of this chapter describe the development of small PowerBuilder 9.0 Rooms Management System process, through the study of this chapter, readers should be familiar with PowerBuilder 9.0 TreeView control and the right mouse button menu of use, master GroupBox, SingleLineEdit, CommandButton, RadioButton, PictureButton controls such as the similarities and differences to further understanding of data objects window displays various occasions the application. System to complete the task Macr system maintenance include : corporate information, the operator management, change passwords, management succession, dictionary management. Macr basic information : Rooms management system for the basic information management (including new, modify or delete), which is the basic informat
上传时间: 2013-12-20
上传用户:ouyangtongze
本例题将介绍一种建立二叉树的算法。同时介绍对“遍历算法”灵活应用:将二叉树中每个结点的左右子树进行交换。介绍求二叉树深度的算法。 二叉树的建立是一个递归方法,与二叉树先序遍历思路有点相似。数据的组织是先序遍历的顺序,但是当某结点的某孩子为空时以数据0来充当,也要输入。结合右图的二叉树,其数据的输入顺序应该是: 1 2 4 0 0 0 3 5 0 7 0 0 6 8 0 0 9 0 0。 若当前数据不为0,则申请一个结点存入当前数据。如果输入0表明是空(NULL),不分配结点。递归调用建立函数,建立当前结点的左右子树。
上传时间: 2014-01-24
上传用户:zhaiye