搜索资源列表
dddgfgExpressidddon
- 输入一个算术表达式,求出其值,要求表达式输入正确,且数字为0到9之间.并且要以 # 结束。-importation of a math expression, calculated value, the correct expression input requirements and the number of between 0-9. And to the end #.
递归算法快速排序
- 分而治之方法还可以用于实现另一种完全不同的排序方法,这种排序法称为快速排序(quick sort)。在这种方法中, n 个元素被分成三段(组):左段l e f t,右段r i g h t和中段m i d d l e。中段仅包含一个元素。左段中各元素都小于等于中段元素,右段中各元素都大于等于中段元素。因此l e f t和r i g h t中的元素可以独立排序,并且不必对l e f t和r i g h t的排序结果进行合并。m i d d l e中的元素被称为支点( p i v o t )。图1 4
9二叉树
- 几乎包括二叉树的所有编程算法,其中有二叉树的先中后序递归与非递归遍历算法,由先序与后序建立二叉树,层次遍历,求叶子结点数,总结点数,树的深度与宽度。-including binary tree almost all programming algorithm, these binary tree after the first sequence which recursive and non - recursive traversal algorithm, and by the first se
shujuzonghe
- 这是个数据结构的综和算法。包函了数据结构里所有的算法-This is a comprehensive data structure and algorithm. 9.1.2 of the data structure, all the algorithms
AlgorithmCode
- 海明码 出站入站序列 非递归生成树 九格填质数 七子控棋盘等等算法-Haiming yards out station stops recursive sequence-9 grid spanning tree fill several seven-quality control algorithm chessboard, etc.
HugeInt_C++
- 将大数看作一个n进制数组,对于目前的32位系统而言n可以取值为2的32次方,即0x10000000, 假如将一个1024位的大数转化成0x10000000进制,它就变成了32位,而每一位的取值范围就不是0-1 或0-9,而是0-0xffffffff。我们正好可以用一个无符号长整数来表示这一数值。所以1024位的大数 就是一个有32个元素的unsigned long数组。而且0x100000000进制的数组排列与2进制流对于计算机 来说,实际上是一回事,但是我们完全可以针对unsi
aodv-uu-0.9.tar
- 路有算法aodv的linux下的版本,基本上可以在ns上运行。国外的好例子-road algorithm aodv under the Linux version, basically running on the ns. A good example abroad
TriMat
- 在目录“\\上三角矩阵类的实现”中给定了文件triMat.cpp、triMat.h,请把triMat.h文件中的9个填空位置补上正确的代码,使triMat.cpp能完成上三角矩阵的加、减、乘运算。要求输入: 输入矩阵维数:4 输入矩阵a的元素(包括0): 1 2 3 4 0 1 2 3 0 0 1 2 0 0 0 1 输入矩阵b的元素(包括0): 1 2 3 4 0 1 2 3 0 0 1 2 0 0 0 1 -in the di
5-9
- 学习c语言的基础算法,希望大家喜欢。后面还有请随时关注。-learning algorithm based on the language, hope you like them. After that there are concerns from time to time.
Prime_Bit
- 素数统计快速算法,采用分段赛选,统计10^9 以内素数个数时间在1s以内。-prime Statistics fast algorithm, using sub-tournament election statistics 10 ^ 9-within a few hours in the number of 1s within.
24dian.tar
- 用python编写的24点程序,改进后同时可以计算寻找诸如(((1+2)*3-4)+5*6*7+8)*9 = 2007这样的解法-python with 24 points prepared by the procedures, improved for the same time can be calculated as (((1) * 3-4) 5 6 * 7 * 8) = 2007 * 9 this The Solution
zju1049
- zju 1049 I Think I Need a Houseboat http://acm.zju.edu.cn/show_problem.php?pid=1049-zju 1049 I Think I Need a Houseboat http : / / acm.zju.edu.cn / show_problem.php pid = 104 9
Bala
- 给定n个整数a , a , ,an 1 2 组成的序列。序列中元素i a 的符号定义为: ï î ï í ì - < = > = 1 0 0 0 1 0 sgn( ) i i i i a a a a 符号平衡问题要求给定序列的最长符号平衡段的长度L,即: þ ý ü î í ì = + - = å =
stack
- C语言编写的栈操作模板。包含栈的9种基本操作,从栈的创建、栈的判断到入栈、出栈操作,以及栈的删除等操作。
rand1-9
- 用来产生随机数的函数,产生的长度为1-9位,效率很好
9连环
- 这是关于古代9连环问题的求解过程,包括安装跟坼卸-This is a chain of nine ancient problem solving process, including the installation of crack with dumping
2012-summer-Training-Contest(9)
- ACM 2012多校暑假集训(9),标程+解题报告。-ACM 2012 Multi-University Training Contest- Contest 9 Tutorial.
4-9-motor-refueling
- 4-9 motor refueling.算法设计与分析 课后答案 算法实现题4-9-4-9 motor refueling
9
- 交大数据结构第9章作业代码,供大家参考,希望对大家有用-National Chiao Tung University Chapter 9 jobs data structure code, for your reference, I hope useful
[蓝桥杯2017初赛]9数算式
- 标题:9数算式 观察如下的算式: 9213 x 85674 = 789314562 左边的乘数和被乘数正好用到了1~9的所有数字,每个1次。 而乘积恰好也是用到了1~9的所有数字,并且每个1次。 请你借助计算机的强大计算能力,找出满足如上要求的9数算式一共有多少个?