-
四种算法求最短路径的例子,C#,图形演示
分别为贪心发,动态规划发,分支限界法,和回溯法...
四种算法求最短路径的例子,C#,图形演示
分别为贪心发,动态规划发,分支限界法,和回溯法-Four shortest path algorithm for example, C#, Graphical presentations were greedy fat, fat, dynamic programming, branch and bound method, and backtracking
- 2023-08-31 01:50:03下载
- 积分:1
-
百威代金券制作
该软件可以制作百威收银系统全系列的购物券单个生成和批量生成,生成数据为随机数据
- 2022-01-26 03:08:01下载
- 积分:1
-
Schools to write their own web site framework, the use of struts, hibernte frame...
自己写的学校网站框架,使用struts,hibernte框架,数据库使用的是mssql2005!-Schools to write their own web site framework, the use of struts, hibernte framework, database using mssql2005!
- 2023-06-07 19:25:03下载
- 积分:1
-
此程序还不能对字符串排序,望能予以改进
此程序还不能对字符串排序,望能予以改进-A general soring program.*It can t sort string, and need to be improved.
- 2022-01-26 00:26:33下载
- 积分:1
-
别人的VC操作Access数据库都是用的GUI,让VC手生的看了迷糊,不得要领,这次我封装一个纯C++操作Access2000库的源代,主要封装了一个访问Acc...
别人的VC操作Access数据库都是用的GUI,让VC手生的看了迷糊,不得要领,这次我封装一个纯C++操作Access2000库的源代,主要封装了一个访问Access数据库的类,非常简单.-Someone else" s VC action Access databases are used in GUI, so that VC looked rusty" s confused, but to no avail, this time I packaged a pure C++ source operating Access2000 database generation, mainly encapsulates an Access database, access to classes, is very simple .
- 2022-01-26 15:49:36下载
- 积分:1
-
题目:设计一个题目,演示用算符优先法对算术表达式求值的过程。
概要设计
1、顺序扫描中缀算术表达式,当读到数字时直接将其送至输出队列中;
2、当读到...
题目:设计一个题目,演示用算符优先法对算术表达式求值的过程。
概要设计
1、顺序扫描中缀算术表达式,当读到数字时直接将其送至输出队列中;
2、当读到运算符时,将栈中所有优先级高于或等于该运算符弹出,送至输出队列中,再将当前运算符入栈;
3、当读入左括号时,即入栈;
4、当读到右括号时,将靠近栈顶的第一个左括号上面的运算符全部一次弹出,送至输出队列中,再删除栈中的左括号。
5、使用VS栈来存储读入的操作和运算结果,然后进行数字字符到数值的转换。
-Title: Design of a topic, presentation operator priority method with arithmetic expression evaluation process. Summary of design 1, the order of scanning arithmetic infix expressions, when they read numbers directly to the output queue 2, when they read operator, it will stack all priority higher than or equal to the operator pop-up , sent to the output queue, and then the current operator入栈 3, when read left brackets, that is, when入栈 4, when they read the right brackets, it will be near the Top-left of the first operator in brackets above All a pop-up, sent to the output queue, and then delete stacks of left brackets. 5, the use of VS stack to store read operation and computing the results of numeric characters and then proceed to the numerical co
- 2022-03-18 20:45:34下载
- 积分:1
-
一元稀疏多项式计算器[加法和乘法] 问题描述: 设计一元系数多项式计数器实现两个多项式间的加法、减法。 基本要求: (1) 输入并建立多项式 (2) 输出多项式...
一元稀疏多项式计算器[加法和乘法] 问题描述: 设计一元系数多项式计数器实现两个多项式间的加法、减法。 基本要求: (1) 输入并建立多项式 (2) 输出多项式,输出形式为整数序列:n,c1,e1,c2,e2……cn,en,其中n是多项式的项数,ci,ei分别为第i项的系数和指数。序列按指数降序排列。 (3) 多项式a和b相加,建立多项式a+b,输出相加的多项式。 (4) 多项式a和b相减,建立多项式a-b,输出相减的多项式。 用带表头结点的单链表存储多项式。 测试数据: (1) (2x+5x8-3.1x11)+(7-5x8+11x9) (2) (6x-3-x+4.4x2-1.2x9)-(-6x-3+5.4x2+7.8x15) (3) (x+x2+x3)+0 (4) (x+x3)-(-x-x-3)-one yuan sparse polynomial calculator [Addition and multiplication] Problem description : Design one yuan polynomial coefficient counter achieve the two polynomials addition, subtraction. Basic requirements : (a) input and the establishment of polynomial (2) output polynomial, the output form of integer sequence : n, c1, e1, c2, e2 ... cn, en, where n is the polynomial Number, ci, ei for the first item i the coefficients and indexes. By sequencing index in descending order. (3) a and b polynomial addition, the establishment of a polynomial b, the combined output polynomial. (4) a and b polynomial subtraction, the establishment of a polyno
- 2022-10-15 00:45:03下载
- 积分:1
-
完全基于ODBC API封装的数据库访问库源代码。可以支持主流数据库。接口间接,清晰。...
完全基于ODBC API封装的数据库访问库源代码。可以支持主流数据库。接口间接,清晰。-Based entirely on the ODBC API package, database access library source code. Can support the mainstream databases. Interface, indirect and clear.
- 2022-02-27 08:50:37下载
- 积分:1
-
miniSQL 的数据库设计
数据库系统设计课程作业设计并实现一个精简型单用户SQL引擎(DBMS)MiniSQL,允许用户通过字符界面输入SQL语句实现表的建立/删除;索引的建立/删除以及表记录的插入/删除/查找。 通过对MiniSQL的设计与实现,提高学生的系统编程能力,加深对数据库系统原理的理解。
- 2023-02-11 23:55:04下载
- 积分:1
-
二叉树实例
二叉树是重要的数据结构,在其它数据结构的学习当中是基础环节。其他树形结构与二叉树在本质上都有一定的相似。而遍历是树形结构的重要算法。好的遍历算法效率高稳定性强。C++实现的二叉树。
- 2022-06-18 01:48:26下载
- 积分:1