资源列表
α-β-γ滤波源码
- 此滤波方法对于从事信号处理的工程人员很熟悉,这里提供了此滤波方法的C源代码,便于工程人员直接应用-this filtering method for signal processing engaged in the engineering staff is very familiar with, this provided a filtering method of C source code to facilitate direct application engineering staff
Gauss_seidle
- By the proof of Lemma 2 of Section 5.2, this accomplished as follows:
lagrange
- 采用FORTRAN90编程,使用插值法来利用有限的已知数据来预测未知的状态-Using FORTRAN90 program, using the interpolation method to use the limited known data to predict the unknown state
maopaopaixu
- 自己写的几种能够实现的冒泡排序算法,希望能对需要的朋友有所帮助,是C++的-Some write their own bubble sort algorithm can be achieved, hoping to help a friend in need is a C++,
splay-tree
- 划分树logn 给你n个数 然后让你query从ll到rr中排第k的数-N logn to you by the number of trees and then let you query from ll to rr in the number of rank k
huffman
- Huffman 编码 已知:信源符号个数q、信源符号s0, . . . , sq?1,信源概率分布p0, . . . , pq?1。 算法: (a) 如果q = 2 则返回编码:s0 7! 0, s1 7! 1 (b) 否则 i. 重新排序s0, . . . , sq?1 和p0, . . . , pq?1 ii. 创建一个符号s′,其概率为p′ = pq?2 + pq?1 iii. 递归调用本算法以得到s0, . . . , sq?3, s′ 的编码w0, . .
dynamic-programming
- 使用c++语言,在vs2008平台上编写,用动态规划法求解0,1背包问题-C++ language use, in vs2008 platform to write, with the dynamic planning solution 0, 1 knapsack problem
Oinvf
- 对矩阵求逆,根据提示在visual c++运行环境中输输入矩阵及相关参数即可求出逆矩阵,已通过测试。 -Matrix inversion, follow the prompts to lose input the visual c++ operating environment matrix and related parameters can be calculated inverse matrix has been tested.
table_maloc
- 数据结构,目录法,模拟malloc函数,实现内存动态分配-my_malloc in C
bahuanghouwenti
- 用一维数组来进行处理。数组的下标i表示棋盘上的第i列,a[i]的值表示皇后在第i列所放的位置。如:a[1]=5,表示在棋盘的第一例的第五行放一个皇后。 程序中首先假定a[1]=1,表示第一个皇后放在棋盘的第一列的第一行的位置上,然后试探第二列中皇后可能的位置,找到合适的位置后,再处理后续的各列,这样通过各列的反复试探,可以最终找出皇后的全部摆放方法。 程序采用回溯法,算法的细节参看程序。-chengxu
01
- 顺序表的基本操作,包括定义,创建,插入,删除-The basic operation of the sequence table, including definitions, create, insert, delete, etc.
快速质因数测试
- 此程序使用随机测试速度较快,在多次测试的情况下基本可以保证正确性,使用时应注意测试次数不能太少