-
利用桶排序给数组a排序,建立的桶为b和e,其中b为含有十万个桶,e为只有一个链表的桶,然后对b和e使用插入算法排序,比较两种算法的时间,b需要40毫秒左右,e需...
利用桶排序给数组a排序,建立的桶为b和e,其中b为含有十万个桶,e为只有一个链表的桶,然后对b和e使用插入算法排序,比较两种算法的时间,b需要40毫秒左右,e需要9到10分钟。-use barrels a ranking to the array, in order to establish the barrels of b and e, b to contain 100,000 barrels of only one e Chain barrels, and then to b e used to insert sorting algorithm, the algorithm for comparing two hours, b needs about 40 milliseconds, e needs 9 10 minutes.
- 2023-05-18 05:00:04下载
- 积分:1
-
In this paper, on the one hand, to produce the form of examples of the types of...
本文一方面以实例的形式介绍产生数据封锁的各类情况,另一方面从数据库理论的角度加以分析,以期使读者既知其然,更知其所以然,使读者能够更加深入地理解Oracle的数据封锁机制,而不是简单地记住某些结论。-In this paper, on the one hand, to produce the form of examples of the types of data on the situation of the blockade, on the other hand, the theoretical point of view from the database to be analyzed in order to make the reader not only know-and know所以然, so that readers can be more in-depth understanding of Oracle data blockade mechanism, rather than simply to remember some of the conclusions.
- 2022-06-02 15:41:14下载
- 积分:1
-
Realizes the compartment dispatch with the stack form,The train entrance compart...
用栈的形式实现车厢调度,火车入口处的车厢序列编号为1到n-Realizes the compartment dispatch with the stack form,The train entrance compartment sequence serial number is 1 to n
- 2022-05-15 19:35:41下载
- 积分:1
-
一个有用的数据库操作程序(用jubilder)
一个有用的数据库操作程序(用jubilder)-a useful database operations (using jubilder)
- 2022-06-21 13:08:34下载
- 积分:1
-
这是我学习数据结构与算法时编的关于队列操作的程序,对学习数据结构的朋友有帮助...
这是我学习数据结构与算法时编的关于队列操作的程序,对学习数据结构的朋友有帮助-This my learning algorithm and data structure when the series of the operation of the queue on procedures for the study of the data structure to help friends! !
- 2022-01-22 01:33:55下载
- 积分:1
-
closely with the database related to the operation of a typical VC routines sour...
跟数据库密切相关的各种典型操作VC例程源代码,比较常见的操作都有。-closely with the database related to the operation of a typical VC routines source code, the more common operations have.
- 2023-04-21 11:30:04下载
- 积分:1
-
一个压缩算法, 名字叫PPMD,压缩率比较高, 同时, 可以自行修改并编译,请各位研究算法的同僚一同研究....
一个压缩算法, 名字叫PPMD,压缩率比较高, 同时, 可以自行修改并编译,请各位研究算法的同僚一同研究.-a compression algorithm, named PPMD, higher compression ratio, and can make its own decisions and build, please algorithm research colleagues to study together.
- 2022-06-17 22:22:38下载
- 积分:1
-
一个学生管理系统的例子,演示了一个扩展字符数…
一个学员管理系统的实例,演示了JDBC一些拓展的特性,例如PrepareStatement、CallableStatement、ResultSetMetaData、大对象、DataSource等。-Example of a student management system to demonstrate a number of expansion characteristics of JDBC, for example, PrepareStatement, CallableStatement, ResultSetMetaData, large object, DataSource and so on.
- 2022-04-12 04:21:21下载
- 积分:1
-
在编译、运行程序之前,请将所附的数据库文件rms.mdb导入SQL server中,并将此数据库命名为RMS。具体操作步骤可以参见书中这一章的相关小节。若没有安...
在编译、运行程序之前,请将所附的数据库文件rms.mdb导入SQL server中,并将此数据库命名为RMS。具体操作步骤可以参见书中这一章的相关小节。若没有安装SQL server,也可以直接在控制面板中将此数据库文件设置为数据源,并命名为MyDS。注意,若数据库没有安装成功,MS Visual Studio在打开工程文件的时候将会报错,但忽略之后不影响程序的正常编译。-In the compiler, before running the program, please rms.mdb attached database file into SQL server and will be named this database RMS. Specific steps can see the relevance of the book section of this chapter. If not install SQL server, can also be directly in the control panel in this database file is set to the data source named MyDS. Note that if the databases are not installed successfully, MS Visual Studio project file in the open when the error will be, but do not overlook the impact of following the normal procedures for compiling.
- 2022-01-26 03:33:39下载
- 积分:1
-
停车场管理系统的源代码
由于停车场是一个狭窄通道,而且只有一个大门可供汽车进出,问题要求汽车停车场内按车辆到达时间的先后顺序,依次由北向南排列。由此很容易联想到数据结构中的堆栈模型,因此可首先设计一个堆栈,以堆栈来模拟停车场,我设计用顺序存储结构来存储停车场内的车辆信息,并给车辆按进栈顺序编号,当停车场内某辆车要离开时,在他之后进入的车辆必须先退出车场为它让路,待该辆车开出大门外,其他车辆再按原次序进入停车场。这是个一退一进的过程,而且让道的汽车必须保持原有的先后顺序,因此可再设计一个堆栈,以之来暂时存放为出站汽车暂时让道的汽车。当停车场满后,继续进来的汽车需要停放在停车场旁边的便道上等候,若停车场有汽车开走,则按排队的先后顺序依次进站,最先进入便道的汽车将会最先进入停车场,这完全是一个先进先出模型,因此可设计一个队列来模拟便道,队列中的数据元素设计成汽车的车牌号,并以链表的形式存储。另外,停车场根据汽车在停车场内停放的总时长来收费的,在便道上的时间不计费,因此必须记录车辆进入停车场时的时间和车辆离开停车场时的时间,然后计算、显示费用情况。
- 2023-04-01 23:20:03下载
- 积分:1