-
array.h: 安全数组 linkedlist.h: 普通表 dclinkedlist: 双向循环链表 hashtable.h: 哈希表 binstree.h...
array.h: 安全数组 linkedlist.h: 普通表 dclinkedlist: 双向循环链表 hashtable.h: 哈希表 binstree.h: 二叉搜索树 avltree.h: AVL 树 如果要存储集合(元素不可重复)并快速查找,最佳的是 binstree.h(二叉搜索树)。 如果要存储二维或更高维的表格,最佳的是 hashtable.h(哈系表)。AVL 树的插入成本非常高(删除函数也没有实现),但 AVL 的搜索效率极高,所以适用于在程序开始前初始化程-NOTE:
array.h :secure array,linkedlist.h:common table,
dclinkedlist:dual cycle linkedlist,
hashtable.h:hash table
binstree.h:binary search tree,
avltree.h: AVL tree,
if you want to store set(elements no repeating) and to lookup it swiftly,best is binstree.h(binary search tree).if you want to store two dimensions s or more dimensions s table,best hashtable.h(hash table).the cost of AVL tree s insertion is very high(delete function is not completed),but effiency of AVL tree s search is very high,so it is the same with initialize programme before beginning programme.
- 2022-08-16 05:08:19下载
- 积分:1
-
软输入板控制
控制软输入面板-所带源代码,是很好的示例.-Control of Soft Input Panel-
- 2022-02-07 22:50:31下载
- 积分:1
-
This is a time in my own study of small programs still feel quite up to the peop...
这是一个我在学习时自己做的小程序感觉还是比较行的大家过来帮我提一些意见吧-This is a time in my own study of small programs still feel quite up to the people to help me make some views on this
- 2022-08-24 23:38:14下载
- 积分:1
-
JBuilder编程的实例,很有用,对出学者非常有帮助。
JBuilder编程的实例,很有用,对出学者非常有帮助。-JBuilder programming examples useful to scholars out has been very helpful.
- 2022-03-22 22:24:56下载
- 积分:1
-
一个带键盘处理的电子钟小程序,用汇编语言写的
一个带键盘处理的电子钟小程序,用汇编语言写的-a keyboard with the electronic bell small program written in assembler language of
- 2022-10-21 04:35:03下载
- 积分:1
-
形式分为窗口和互动信息,以主取胜…
窗体分割及窗口间信息的交互,在主窗口中画线及画点操作-Form divided between the window and the interactive information, in the main window line drawing and painting operation point
- 2022-02-06 04:32:25下载
- 积分:1
-
regular expression syntax processing software demonstrations illustrate the oper...
表达式语法处理过程说明 这个软件演示了基于操作符优先级的表达式处理算法,属于很经典的算法。详细的演示了处理过程的每个动作以及辅助栈、表的使用。对学习《编译原理》和《数据结构》中的相关内容会有所帮助。 关于此算法的详细描述请见《数据结构》(清华出版社)。 软件使用方法,可以直接采用程序样例中的表达式(-9.3*((8+2-3*6/2-0.8)+(-64))),也可以在表达式输入的文本框中输入一个新的表达式(限数字、基本运算符、括号),先点击“初始化计算”按钮,然后点击“演示”按钮,每次一步。在此过程中,请观察“操作符号栈”、“操作数栈”、“操作数对照表”的变化情况,以及每次读取的当前词和当前动作。 题外话:觉得许多软件开发人员有一种只重视程序语言和技巧,而忽视算法设计的倾向。记得有个很出名的说法:程序=算法+数据结构。当然现在软件领域出现了许多新的动向,但基本功仍应重视。颖易教育软件工作室主页:http://www.yingyi.net电子邮件:yingyi@yingyi.net,true_yingyi@etang.com电话:(010)63522531-regular expression syntax processing software demonstrations illustrate the operator based on the priority of expression processing algorithm, a very classic algorithms. A detailed demonstration of the process every movement and auxiliary stack, table use. The study "Compiler Principle" and "data structure" of the content will be helpful. This algorithm on a detailed description, see "Data Structure" (Tsinghua University Press). Use of the software can be used directly in the sampl
- 2022-03-19 01:12:37下载
- 积分:1
-
From regular expressions to DFA thorough study of examples like regular expressi...
从正则表达式到有穷自动机实例
想研究透彻正则表达式,必须知道有穷自动机的原理,这个源码可以给你一个很好的示例参考。编译后程序会生成一个可执行文件,运行这个文件出来一个DOS窗口,然后按提示输入正则表达式。
-From regular expressions to DFA thorough study of examples like regular expressions, we must know the principles of DFA, this source can give you a good reference sample. Compiled program generates an executable file, run this file from a DOS window, then prompted to enter a regular expression.
- 2022-01-26 01:32:36下载
- 积分:1
-
用C/C++设计一个简单的模拟送货系统。
功能要求及说明:
1. 添加送货单(送货单号,送货地址,送货数量,收货人姓名,送货时间,送货状态(待送,取消,...
用C/C++设计一个简单的模拟送货系统。
功能要求及说明:
1. 添加送货单(送货单号,送货地址,送货数量,收货人姓名,送货时间,送货状态(待送,取消,已送)等)
2. 取消送货单
3. 处理送货单(已送货成功)
4. 显示即将过期又没处理的送货单
5. 以磁盘文件保存这些信息
-With C/C++ The design of a simple simulation of the delivery system. Functional requirements and description: 1. Add a delivery note (delivery note number, delivery address, delivery number, consignee name, delivery time, delivery status (to be sent, canceled, has been sent), etc.) 2. Cancel delivery note 3. deal with delivery note (already delivered successful) 4. show about to expire has no deal with the delivery note 5. Save the file to disk information
- 2022-02-10 14:24:15下载
- 积分:1
-
vbscrip 口令
VBscrip写的excel 输入密码的子程序
-------------------------------------------------------------------
"有输入掩码的 InputBox
"在 VBA InputBox 可以隐藏输入的字符
"
"作者:Daniel Klann
"日期:2003年3月
"译者:cg1 (http://access911.net)
"环境:Windows XP + Access 2003 测试通过
"-------------------------------------------------------------------
- 2022-03-21 07:30:47下载
- 积分:1