搜索资源列表
AVLTreeVc7
- 构建一个avl树的程序,压缩包中含有项目文件,头文件和源文件。编译运行后输入结点的值如55,程序就会自动按avl规则建或重构AVL树,并以中序遍历打印出来,以100.001结束结点值的输入退出循环终止程序-AVL tree procedures, compressed packets containing project documents, files and source documents. After running compile input node as the value of
Windows_device_information
- Example list of Windows devices source code end executable binaries
DiskID
- diskid32.cpp end executable binaries for displaying the details of hard drives in a command window
condition_adjustment
- 该程序是实现测量平差中条件平差的程序,其中采用了动态数据,并在结束时析构-The adjustment procedures are measured in the conditions of implementation of the adjustment process, one of the use of dynamic data, and at the end of destructor
boosbegin
- 利用boost::begin和boost::end可以使我们最大限度减少数组和容器等越界现象!-Using boost:: begin and boost:: end allows us to minimize cross-border phenomena such as arrays and containers!
mergeosrt
- 申请空间,使其大小为两个已经排序序列之和,该空间用来存放合并后的序列 设定两个指针,最初位置分别为两个已经排序序列的起始位置 比较两个指针所指向的元素,选择相对小的元素放入到合并空间,并移动指针到下一位置 重复步骤3直到某一指针达到序列尾 将另一序列剩下的所有元素直接复制到合并序列尾-Application space, so the size of the two already sorted sequences, and, after the merg
selfremov
- 文件自删除代码,文件名改为*.bat,运行结束后即会自删除。-Remove the code from the file, the file name to*. bat, after the end of operation will be self-deleted.
Mine
- 简单的布雷程序,类似于Windows中扫雷结束后的图形提示,提示当前雷位置以及其附近的具体雷的数目-Simple mining process, similar to Windows in the mine after the end of the graphics tips, suggesting that the current location and its nearby mine-mine the number of specific
Palindrom
- This a recursive function, without loops titled: int is_palindrom (char arr [], int len) Accepts an array of characters and length. The function return 1 if the array contains a palindrome (a series of characters that particular cry from the b
chess-C
- 该项目系在Visual Studio.net 2003下所建的Win32控制台项目(使用其它版本的编译器只需新建一个Win32控制台项目,然后逐一加入所有的.cpp文件和.h文件即可),其目的只是简单地测试引擎。因而该程序不提供用户着法的合法性检测,以及棋局的结束处理等。 下棋方式: 用户按输入起点坐标、终点坐标的方式下棋; (棋盘左下角计作(0,0),右上角计作(8,9)) 同样,程序反馈起点坐标、终点坐标作为计算机方的走棋行为。 例如: 用户第一步走:炮二
parser
- Pascal 语言中,复合语句是用begin„ „ end 表示,条件语句的格式是if „ „ then„ „ else„ „ 表示,其中,else 子句可以出现也可以不出现。编一函数,检查Pascal 源文件 中的begin 和end 是否配对,if、then、else 是否配对。 输入:从名为pascal.in的文件中读入数据,该文件中即包含一个没有注释的pascal程序。 输出:输出文件名为p
example
- 用c语言,不用windows api 拷贝一个50M以上的文件,每次拷贝1kb, unsigned char buffer[1024] 直到文件拷贝结束 -C language without windows api Copy more than a 50M file, every copy 1kb the end of an unsigned char buffer [1024] until the file copy
stack
- 中缀表达式转化为后缀表达式并求值,代码很长,原创-Using Stack to convert the middle expression to end expression
Merchandise-management-system
- 商品管理系统,期末大作业,单链表实现创建,排序,删除等功能-Merchandise management system, the end of major operations
yinhangmoni
- 这是一个简单的银行模拟系统 1、 客户的到达时间随机 2、 客户需要处理的业务随机(不同业务处理的平均长度不同,例如:取款时间较短,开户和销户时间较长) 3、 处理客户业务所需时间随机(在一定范围内) 4、 使用文本文件记录每个客户到达时间、业务处理时间、业务结束时间 5、 动态显示(刷新时间可调)目前每个窗口累计处理客户数量、等待人数,每个窗口的平均业务处理时间,不同业务类型业务的累计办理量。 -This is a simple bank simulation syst
P862
- p.862是ITU标准提案,主要是用来对窄带电话网的端到端语音质量和语音编码器解码的语音质量进行评估。中有p.862的标准文档和实现软件。-p.862 is ITU standard proposal, is mainly used to evaluate the narrowband telephone network and the end-to-end voice quality and voice quality of the decoded speech encoder. P.862
xianxingbiao
- 1、 创建线性表类。线性表的存储结构使用链表。 2、 完成表首插入元素、删除指定元素、搜索表中是否有指定元素、输出链表。 3、 输入n个不为零的整数作为节点元素值,遇到0代表输入结束(不创建元素值为0的节点),创建链表。输出整个链表。 4、 输入一个整数,将该数作为一个元素值插入表首位置。输出整个链表。 5、 输入一个整数,在链表中进行搜索,输出其在链表中的位置。如果不存在输出0。 6、 再一次输入一个整数,在链表中进行搜索,输出其在链表中的位置。如果不存在输出0。 7、
MinPlaceAssignmentProblem
- 给定n个活动,活动i起始时间和结束时间为 s[i]、f[i],求安排活动后,使用会场最少的方案的会场数。-Given n events, the start time and end time of activity i s [i] f [i], seeking to arrange activities, use the venue at least the number of the venue of the program.
Expression-evaluation
- 输入中缀算术表达式S,S中的操作数为非负整数,只含+,-和*,/运算,也可能含有括号(),运算符的计算顺序和实际四则运算的计算顺序相同. 输出表达式S的值. 注意除法运算只取整数部分,例如1/2=0. Input 输入有多组数据. 每组数据是一个算术表达式S,S的长度不超过100. 输入的S保证合法,而且不包含多余的空格或制表符. S的操作数、中间结果和最终结果都不会超过int类型的范围,也不会出现除数为0的情况. 输入以#号结束. Output 对于每个算术表达式S,输
list
- 用于统计目录文件的小程序,可以列出指定目录下所有指定文件结尾的文件路径,并输出到文件-Small program for statistical directory file lists the file path of the end of the specified file in the specified directory, and output to a file