资源列表
div16div8
- 16位二进制数与8位二进制数的无符号除法
Romberg
- 数值分析中的龙贝格积分算法,使用与研究生课程中的数值分析的romberg积分,对于理解积分过程很有帮助,本人原创-Numerical analysis of Romberg integration algorithm
cop
- 利用竞争层网络对样本数据进行分类,利用输入样本数据对网络进行仿真-Using a competitive layer network to classify the sample data on the use of input sample data for simulation of network
dianlubuxian
- 用动态规划算法解决电路分布问题-Using dynamic programming algorithm to solve the distribution problem of circuit
OidUtil
- 一种生成包含0-9数字与a-z,A-Z字母的20位随机数算法。-A random generation algorithm including a-z,A-Z alphabets and 0-9 numbers
ARBURG
- 用Fortan语言编写的用Burg算法求AR模型的参数的程序-Written by Fortan with Burg algorithm for getting the program AR model parameters
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
fft-test
- fft加噪声试验,方波,幅值谱,功率谱等。用IFFT反算信号等-fft and white noise
Thread-Double-Time
- 双序遍历,可以对是链式存储的二叉树进行双序遍历-Thread twice
agnesi
- estadistica: bruja de agnesi. se puede pintar en la pàntalla de matlab. espero que os guste, saludos,
xiaobo
- 基于小波变换的信号去噪技术,简单的一维小波去噪程序-Signal de-noising based on wavelet transform technique, a simple one-dimensional wavelet denoising procedure
二叉树的先、中、后序遍历序列
- 从键盘接收扩展先序序列,以二叉链表作为存储结构,建立二叉树。输出这棵二叉树的先序、中序和后序遍历序列。 输入 输入扩展先序序列。二叉树结点的data是字符类型数据, 其中#表示空格字符。 输出 三行依次输出先序、中序、后序遍历序列。 样例输入 ABC##DE#G##F### 样例输出 ABCDEGF CBEGDFA CGEFDBA