-
实现堆栈先入后出的功能
堆栈是一种执行“先入后出”算法的存储器。数据一个一个顺序的存入(也就是压入——push)存储区中。有一个地址指针总是指向最后一个压入堆栈的数据所在的数据单元,存放这个地址的指针的寄存器叫做堆栈指示器。开始放入数据的单元叫做“栈底”,最后放入的数据的单元叫做“栈顶”。数据一个一个地存入,这个过程叫做“压栈”。在压栈的过程中,每有一个数据压入堆栈,就放在和前一个单元相连的后面的一个单元中,堆栈指示器中的地址自动加1。读取这些数据时,按照堆栈指示器中的地址读取数据,堆栈指示器的地址数自动减1,这个过程叫做“弹出——pop”。如此,就可以实现了“先入后出”的原则。
- 2022-02-14 16:34:28下载
- 积分:1
-
N-皇后问题线性时间算法
O(n)复杂度,非O(n^2)的,使用的是构造法。-N-Queen problem of linear time algorithm
- 2023-05-09 15:10:02下载
- 积分:1
-
八皇后问题:用回溯算法做的
八皇后问题:用回溯算法做的
-8 Queens : The backtracking algorithm
- 2023-05-20 18:50:03下载
- 积分:1
-
将马随即放在国际象棋的8×8棋盘Board[8][8]的某个方格中,马按走棋规则进行移动。要求每个方格只进入一次,走遍棋盘上全部64个方格。编制非递归程序,求出...
将马随即放在国际象棋的8×8棋盘Board[8][8]的某个方格中,马按走棋规则进行移动。要求每个方格只进入一次,走遍棋盘上全部64个方格。编制非递归程序,求出马的行走路线,并按求出的行走路线,将数字1,2,……,64依次填入一个8×8的方阵,输出之。-Ma immediately on the international chess 8 8 chessboard Board [8] [8] of a box, MA by the rules of chess go mobile. Requires each box only entered once traveled chessboard all 64 box. Preparation of non- recursive procedure, and seeking stepped routes, with a calculated routes, the figures 1, 2, ..., 64 were filled an 8 x 8 matrix, put it out.
- 2022-03-03 15:33:41下载
- 积分:1
-
图的DFS遍历,以及两种拓扑排序的实现,一种是DFS拓扑排序,另一种是无后继结点的拓扑排序...
图的DFS遍历,以及两种拓扑排序的实现,一种是DFS拓扑排序,另一种是无后继结点的拓扑排序-map DFS traversal, and the two topological sorting the realization DFS is a topological sorting, Another is no subsequent node of topological sorting
- 2023-04-26 10:50:03下载
- 积分:1
-
VC6.0 the application process to produce programming information sharing system,...
本程序应用VC6.0来编程制作信息共享系统,实现信息管理功享的自动化.本例子采用DAO数据访问方式,采用Access2000作为数据源.-VC6.0 the application process to produce programming information sharing system, information management enjoyed by the successful automation. The examples used DAO data access methods that Access 2000 as a data source.
- 2022-01-25 19:31:53下载
- 积分:1
-
DataSet导Excel表
Delphi 写的 DataSet 导出为Excel 类,不用第三方控件,从CReoprt中切出来,又加工的。
- 2023-01-18 20:30:04下载
- 积分:1
-
用C++写的链表操作,可以作为一个简易的文本编辑器
用C++写的链表操作,可以作为一个简易的文本编辑器-list
- 2022-08-23 08:14:25下载
- 积分:1
-
员工数据基
使用数据库的优点是相当大的。如果没有他们,你将很难找到一个体面的保持和管理信息系统。近年来,更大的灵活性和方便用户的数据库使这些系统关键业务组件。许多数据库解决方案是可用于任何类型的业务需求,从存储到 WordPress 博客的网络服务的客户信息矩阵。这里使用的是数据库的原因
- 2022-02-06 10:51:21下载
- 积分:1
-
Exhaustive Cipher/In many cases we need to exhaustive combinations of algorithms...
穷举密码算法
/在许多情况下我们需要穷举组合的算法,比如密码词典。
//这个算法的关键是密码下标进位的问题。
//另外本例子中的写文件语句效率比较低,为了降低算法复杂度没有优化。
//如果要提高写文件的效率,可以使用缓冲区,分批写入。-Exhaustive Cipher/In many cases we need to exhaustive combinations of algorithms, such as the password dictionary.// This algorithm, the key is password subscript binary problems.// Another example of this statement to write a document relatively low efficiency, in order to reduce the algorithm complexity is not optimized.// If you want to improve the efficiency of writing documents, you can use the buffer, write in batches.
- 2023-09-07 14:55:03下载
- 积分:1