搜索资源列表
PROGRAMMIFA
- 幂法求矩阵的特征值和特征向量 算法9.1 1. 输入矩阵A,初始向量X,误差限ε最大迭代次数N。 2. 置k=1,u=0。 3. 求xr=>λ,|xr|=max|xr|,i=1,….,n。 4. 计算 Y=X/λ,X=AY 5. 若|λ-u|〈ε,输出λ,X,停机;否则,转步骤6。 6. 若k<N,k+1=>k,λ=>u,转步骤3;否则,输出错误信息,停机
Matching_on_Weighted_Bipartite_Graph
- 加权二分图匹配,对于给定权重的二分图求出最大匹配-find the max matching of a given weighted bipartite graph
Proiect
- A graphics application, made in Visual C++ and using the glut library. Models created in 3ds Max and saved in .obj format.
prio
- 优先队列是0个或多个元素的集合,每个元素都有一个优先权或值,对优先队列执行的操作有1) 查找 2) 插入一个新元素 3) 删除.在最小优先队列(min priorityq u e u e)中,查找操作用来搜索优先权最小的元素,删除操作用来删除该元素 对于最大优先队列(max priority queue),查找操作用来搜索优先权最大的元素,删除操作用来删除该元素.优先权队列中的元素可以有相同的优先权,查找与删除操作可根据任意优先权进行. -Priority queue is 0 or mor
ParsePcap
- 使用VS2008进行开发,对WireShack抓包中的发包时间进行分析,得到min/max/avg/mdev值以判断网络或者系统的负载情况,pcap包需要用Wireshack导出成txt格式才能进行分析。-Using VS2008 to develop contract WireShack capture, analyze, and get min/max/avg/mdev value to determine the network or system load, the pcap packe
max-min
- max-min聚类算法实现,机器学习方面的经典算法,值得一看-Realization of max-min clustering algorithm, classical machine learning algorithms, worth a visit
Seek-the-max-and-min
- 用递归求一个数组中的最大数和最小值,算法思想是从数组的最后一个值向前比较-Recursive number of maximum and minimum values in an array, the algorithm thinking forward from the last value of the array
20112219_04_02
- 数据结构的实验,C语言编写的一个52张牌,洗牌后发给四家,每一家手里的牌可以按照斗地主方式排序(3最小2最大),或者按照花色和牌面大小排序的小程序。-Experimental data structures, C language, a 52 cards, shuffle issued after four, each one can follow his cards Landlords sort (3 min 2 max), or in accordance with the color an
maxflow-v3.01
- 最新版本的max flow 算法,功能很强大很有作用-max—flow algorithm
FindingPixelAverage-(2)
- Compute min max values of image pixels in image processing
MAXInt
- max int , simple project to demo
Eight-queen
- 八皇后问题,是一个古老而著名的问题,是回溯算法的典型案例。该问题是国际西洋棋棋手马克斯·贝瑟尔于1848年提出:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法-Eight queens problem is an old and famous, is a typical case of backtracking algorithm The problem is the international chess player
MaksMin
- Find the max and min number in an array
Non-linear-filters
- Apply non-linear filters(Median, max, min filters).
FindStudent
- 把长度为l1,l2…ln 的n个程序放在磁带T1和T2上,并且希望按照使用最大检索时间取得最小值的方式存储,即如果存放在T1和T2上的程序集合分别为A和B,则希望所选择的A和B使得max{∑li 1,∑li2}(i1属于A,i2属于B)取得最小。 使用回溯法实现-The length of L1, L2... Ln n programs put in the tape on T1 and T2, and hope that in accordance with the maximum searc
TSPSearch
- c++使用禁忌算法解决MAX-CUT问题-c++ use tabu search algorithm to solve the problem of MAX-CUT
divmnu.c
- Computes the n-m+1-halfword quotient and m-halfword remainder of n halfwords divided by m halfwords, unsigned. Max line length is 57, to fit in hacker.book.
Max-Multiply
- i.最大K乘积问题 问题描述 设I是一个n位十进制整数。如果将I划分为k段,则可得到k个整数。这k个整数的乘积称为I的一个k乘积。试设计一个算法,对于给定的I和k,求出I的最大k乘积。 例如十进制整数 1234 划分为 3 段可有如下情形: 1 × 2 × 34 68 1 × 23 × 4 92 12 × 3 × 4 144 编程任务 对于给定的I 和k,编程计算I 的最大k 乘积。 数据输入 输入的第1 行中有2个正整数n和k。正整数n是序列的