资源列表
div16div8
- 16位二进制数与8位二进制数的无符号除法
yuesefu
- 约瑟夫环问题 数据结构常做题目 很实用的东西哦
Romberg
- 数值分析中的龙贝格积分算法,使用与研究生课程中的数值分析的romberg积分,对于理解积分过程很有帮助,本人原创-Numerical analysis of Romberg integration algorithm
dianlubuxian
- 用动态规划算法解决电路分布问题-Using dynamic programming algorithm to solve the distribution problem of circuit
zhengchu15
- 算法设计与分析的一道题目:整除15问题(适用于上课实验)-Algorithm design and analysis of a topic: divisible by 15 questions (for class experiment)
searchthemaxandmininarray
- 分治思想是算法中很常用的一种技巧。在N个数中求最小值Min和最大值Max,我们只需分别求出前后N/2个数的N/2个数的Min和Max,然后取较小的Min,较大的Max即可(只需较大的数和较大的数比较,较小的数和较小的数比较,两次就可以了)。-You can use the procedure to find the Minnumber and the Maxnumber in the array.
wannianli
- 一个万年历程序,用于查找年份等,可以输出输入的年份是否为闰年,输入的日期在那年哪月-A calendar program used to find the year so you can output and input the year is a leap year, enter the date on which that year
flyaway
- 输入:第一行是3个正整数,m(1≤m≤100),n(1≤n≤100),D(1≤D≤100)。表示原野是m*n的矩阵,法里奥最多只能飞行距离为D。 接下来的m行每行有n个字符,相互之间没有空格。P表示当前位置是平地,L则表示湖泊。假定(1,1)和(m,n)一定是平地。 输出:一个整数,表示法里奥到达基地需要的最短时间。如果无法到达基地,则输出impossible。-Input: The first line is the three positive integers, m (1 ≤ m
Thread-Double-Time
- 双序遍历,可以对是链式存储的二叉树进行双序遍历-Thread twice
DCT
- 用DCT变换进行图像压缩,求经压缩、解压后的图像-With the DCT transform for image compression
zuoye
- 雷达信号理论与应用,自制相同带宽的不同源信号,计算其等效带宽,主瓣分辨率以及信号持续时间-Radar signal theory and application of homemade same bandwidth of different source signals, calculating the equivalent bandwidth of main lobe resolution and signal duration
二叉树的先、中、后序遍历序列
- 从键盘接收扩展先序序列,以二叉链表作为存储结构,建立二叉树。输出这棵二叉树的先序、中序和后序遍历序列。 输入 输入扩展先序序列。二叉树结点的data是字符类型数据, 其中#表示空格字符。 输出 三行依次输出先序、中序、后序遍历序列。 样例输入 ABC##DE#G##F### 样例输出 ABCDEGF CBEGDFA CGEFDBA