-
“数据结构、算法和程序”这个抽象世界的特殊旅程,以解决现实生活中的许多难题...
“数据结构、算法和程序”这个抽象世界的特殊旅程,以解决现实生活中的许多难题- Data structures, algorithms and procedures of the abstract world of a special journey to solve many real-life problems
- 2023-03-03 18:00:06下载
- 积分:1
-
贝尔曼
Bellman-Ford算法 是最短路径算法的一种-Bellman-Ford algorithm is the shortest path algorithm of a
- 2022-03-01 10:39:59下载
- 积分:1
-
大整数的四则运算,搞ACM时丰常常用,我当时是屡试不爽,传上来大家分享...
大整数的四则运算,搞ACM时丰常常用,我当时是屡试不爽,传上来大家分享-Large integer arithmetic, ACM engaged in abundance are often used when, I was applied successfully, Chuan-up to share
- 2022-11-23 15:25:04下载
- 积分:1
-
问题描述:假设一个商店,有一个架子和一个仓库,当第…
问题描述: 假设一个商店,它有一个货架和一个仓库,当货架上的商品数量少于一定的数目时,从仓库运一定数量的商品摆到货架上,当仓库里的商品的数量少于一定的数目时,购买商品把仓库填满,商品的出售要按照商品的生产日期来,快要过期的商品要先出售。 解决问题的方法: 用了两个栈和 一个队列,把队列当作仓库,用一个栈作为货架,把另一个栈当作临时的存储箱。当要往货架上添商品时,先把作为货架的栈中的元素全都压到作为存储箱的栈中,再把仓库中的元素压到存储箱中,然后再把存储箱中的所有元素都压到货架上,这样,就能保证快要过期的商品先被出售。-Problem description : Suppose a shop, which has a shelf and a warehouse, when the merchandise on the shelves less than a certain quantity of the number, a certain number from the warehouses of goods on the shelves, when the warehouse volume of goods is less than certain number, purchase goods warehouse filled, the goods according to the sale of commodity production to date, is about to expire first sale of goods. The solution : a two stack and a queue, queue as a warehouse, used as a stack shelves, and another stack as a temporary storage bins. When to go to the shelves Tim commodity, first as a stack shelves of all elements of the pressure storage tank as the stack, then the warehouse down to the storage element box, and then s
- 2022-07-13 01:56:00下载
- 积分:1
-
PB仓库管理系统
PB仓库管理系统-PB Warehouse Management System
- 2022-04-07 23:52:03下载
- 积分:1
-
,"智能大厦自动报警系统",是从赛奎春所主编的"C++信息系统开发实例精选"CD中拷贝出来的,对mscomm 控件进制转换串口通信等内容进行了详细介绍。...
,"智能大厦自动报警系统",是从赛奎春所主编的"C++信息系统开发实例精选"CD中拷贝出来的,对mscomm 控件进制转换串口通信等内容进行了详细介绍。
- 2022-04-29 08:33:18下载
- 积分:1
-
c语言经典代码,包括:打印图案
,大小写字母的互换
整数因子
/*请编写一程序完成下面的功能:从键盘上任意上任意输入一个大于0且小于1000的整数,...
c语言经典代码,包括:打印图案
,大小写字母的互换
整数因子
/*请编写一程序完成下面的功能:从键盘上任意上任意输入一个大于0且小于1000的整数,然后输出此整数的所有整数因子。如输入12,则输入1,2,3,4,6,12。*/
插入后自动排序
/*原题:把一个整数插入到按由小到大排列的数列中,插入后仍然保持由小到大的顺序排列*/
/*指针,穷举法进行比较交换*/
求数列
/*原题:已知一正整数递增等差数列,前5项之和为25,前5项之积为945,根据以上条件,请编写一个程序,输出该数列的前十项。*/
-c语言经典代码,包括:打印图案
,大小写字母的互换
- 2022-07-18 12:52:57下载
- 积分:1
-
读入一个文本数据,转换成矩阵。
读入一个文本数据,转换成矩阵。 -Reading into a text data, conversion into a matrix.
- 2022-02-22 05:14:42下载
- 积分:1
-
进销存管理系统
用sql sever 编制了一个数据库,delphi编制了操作界面,比较简单,可以通过这很好的学习delphi和数据库这块的内容,如sql 查询语言。
- 2022-01-25 19:24:51下载
- 积分:1
-
由于简单模式匹配算法在一次字符比较失败后,简单的把模式串位置向前移动一个字符位置,这样就丢掉了前面字符匹配中得到的信息,效率差。所以就需要一种无回溯的算法来提高...
由于简单模式匹配算法在一次字符比较失败后,简单的把模式串位置向前移动一个字符位置,这样就丢掉了前面字符匹配中得到的信息,效率差。所以就需要一种无回溯的算法来提高效率,这里使用KMP(Knuth-Morris-Pratt)算法。模式串前面的连续片断部分称“前缀模式”,前缀模式在模式串后部重复出现的情况可以用来避免重复进行已经做过的检查,这是KMP算法中的一个重要概念。-as simple pattern-matching algorithm to compare a character failure, a simple model put forward position Series mobile location of a character, would be lost in front of characters matching the information inefficiently. There is a need for a non-backtracking algorithms to improve efficiency, the use of KMP here (Knuth-Morris-Pratt) algorithm. Model Series in front of a row clips part said "prefix model," prefix string pattern in the pattern of recurring back can be used to avoid duplication of inspection has been done, KMP algorithm is an important concept.
- 2022-03-19 13:35:27下载
- 积分:1