-
基于C、c++排序大全
//希尔排序void ShellSort(int r[], int n){ int i; int d; int j; for (d=n/2; d>=1; d=d/2) //以增量为d进行直接插入排序 { for (i=d+1; i0 &am
- 2022-03-05 10:56:55下载
- 积分:1
-
worldmodel
我想要我的 soccerplay 团队在大学 geometry.h palayer.cpp,worldmodel 喜欢......pleaze 帮助我去此源免费获取某些利益来源
- 2023-04-26 05:20:03下载
- 积分:1
-
一元多项式相加程序,用于完成一元多项式的相加
一元多项式相加程序,用于完成一元多项式的相加-One of the polynomial sum of procedures used to complete the sum of the polynomial 1
- 2022-01-26 05:40:56下载
- 积分:1
-
一个数据结构,其中每个元素包含指向下一个和以前的内容在列表中,形成了双向线性名单。...
一个数据结构,其中每个元素包含指向下一个和以前的内容在列表中,形成了双向线性名单。-A data structure in which each element contains pointers to the next and previous elements in the list, thus forming a bidirectional linear list.
- 2023-08-09 05:35:03下载
- 积分:1
-
pb 源码 进度条例子
pb 源码 进度条例子-pb progress of the sub-source
- 2022-07-14 04:04:49下载
- 积分:1
-
我做的一个图书馆数据库系统,有3,4个表。适合参考
我做的一个图书馆数据库系统,有3,4个表。适合参考-I make a library database system, there are tables 3,4. Suitable reference
- 2022-04-02 00:49:57下载
- 积分:1
-
学校注册管理[软件工程]
学籍管理【软件工程作业】- School register management [ software engineering work ]
- 2022-01-26 07:01:59下载
- 积分:1
-
SSD9课程的exercise的最终版本源代码,包括数据库的脚本文件
SSD9课程的exercise的最终版本源代码,包括数据库的脚本文件-SSD9 the final version of the exercise program source code, including database script files
- 2023-07-11 14:05:05下载
- 积分:1
-
关于二叉排序树胡数据结构程序课程设计代码
关于二叉排序树胡数据结构程序课程设计代码-On the binary sort tree data structure procedures Hu curriculum design code
- 2022-01-26 06:15:12下载
- 积分:1
-
connection/object pool. A program may require a IMAP connection po ol and LDAP c...
Many applications use connection/object pool. A program may require a IMAP connection pool and LDAP connection pool. One could easily implement a IMAP connection pool, then take the existing code and implement a LDAP connection pool. The program grows, and now there is a need for a pool of threads. So just take the IMAP connection pool and convert that to a pool of threads (Copy, paste, find, replace????). Need to make some changes to the pool implementation? Not a very easy task, since the code has been duplicated in many places. Re-inventing source code is not an intelligent approach in an object oriented environment which encourages re-usability. It seems to make more sense to implement a pool that can contain any arbitrary type rather than duplicating code. How does one do that? The answer is to use type parameterization, more commonly referred to as templates.-connection/object pool. A program may require a IMAP connection po ol and LDAP connection pool. One could easily im plemen
- 2023-05-15 08:25:03下载
- 积分:1