搜索资源列表
找鞍点
- 在一个矩阵中寻找鞍点,若一个元素是所在行的最大值,且是所在列的最小值,则为鞍点
CircleArrayBinarySearch
- 在一个环状的有序数组(即把数组看做首位相连,数组最小值和最大值在数组中某个位置相邻)中,使用二分查找寻找一个数是否在数组中,返回其下标。vc 2005环境-In an orderly array of ring (that is, as the first connected to the array, an array of minimum and maximum in the array adjacent to a location), the use of binary search to
wanshell
- warshall法顺序:置新矩阵,开始运算;置i=1;对所有j如果A[j,i]=1,则对k=1,2,3……n运算啊A[j,k]:=A[j,k]+A[i,k]; i++;如果i<=n转上继续 需要: 1.输入矩阵,用二维数组,可以考虑全局变量 2.设置矩阵最大值nMax 3.对i从0到n-1循环,寻找每列为1的项,为1则继续运算,否则返回 增强说明: 1.输入方式选择,同时可以选择是否继续运算 2.不再每行确认,增加修改选项 3.使用字符串数组
find-Saddle-point
- 寻找一个特定多维数组的鞍点,即在行上最大的的同时是列上最小值-To find the saddle point
Corners
- 首先,请检查/样品在你的OpenCV的分布/ C/ squares.c的。这个例子提供了一个方形的检测,如何检测角落类似的功能,它应该是一个不错的开始。然后,一起来看看在OpenCV的功能,导向功能,如cvCornerHarris()和cvGoodFeaturesToTrack()。 上述方法可以返回许多角落类似的功能 - 最不会“真正的角落”你正在寻找。在我的应用程序,我只好检测,旋转或倾斜的广场(透视)。我的检测流水线包括: 从RGB转换为灰度级(cvCvtColor)
shenggaocha
- 寻找身高差值最小的两个人,从标准输入接收五个人的身高,找出身高差最小的两个,若身高差相同则输出绝对高度较大的两个-Find the minimum height difference of two people, from the standard input receives five individual' s height to find the minimum height difference of the two, if the height difference betwee
Edmonds.cpp.tar
- Edmonds算法,寻找网络最大流 算法流程: 在残余网络中, 通过广搜找到一条增广路 找出增广路上的最小权值的边 更新残余网络 直到找不到增广路为止 // 统计当前网络中汇点的流-Edmonds algorithm to find the maximum network flow algorithm process: in the residual network, through extensive search to find an augmenting path
VBsaddle-point
- 寻找鞍点,一行中最大值,同时时一列中最小值-Looking for a saddle point, line maximum, in the same time a minimum
ga
- 在matlab下实现遗传算寻找二元函数最大值-Achieve the genetic algorithm to find the maximum value of a binary function under the matlab
maxmin
- 在一个整数组A[1...n]中,同时寻找最大值和最小值。-In an integer array A [1 ... n] while seeking the maximum and minimum values.
find-Saddle-point
- 寻找一个特定多维数组的鞍点,即在行上最大的的同时是列上最小值-To find the saddle point
Garisons-mission
- 1.需求分析 本题要求循环数数,数到某一个数之后将其排除并从下一个开始重新开始数数,直到剩下一个人为止,要求剩下的人标号为1。我组有两份代码,第一个程序中,输入n值,并数的数至多为3p(p为前n个数最小公倍数,3p为了能够找到规律,n>=7时由于最小周期过大在下面的表格中不便列举),将每种可能的x,y值分组罗列出来,并试图从中找出规律,一旦规律出现,那么我们可以随意举一个符合规律的其他例子来进行验证(验证代码为另一份,而且验证的时候y不再有范围限制,只要符合规律即可) 2.概要设计
Moravec
- 相关系数法就是寻找使得目标窗口和搜索窗口中相关系数取得最大值的点作为同名点的方法,即它是用相关系数作为匹配测度的-Correlation coefficient method is to find the target window and makes the search window correlation coefficient as a method to obtain the maximum point of the same name point that it is the cor
single-objectibe particle swarm
- 这是一各单目标的粒子群算法程序,程序可以运行,收敛性好,效果佳,希望对他人有帮助(This is a single-objective particle swarm optimization algorithm, the program can run, astringent, good effect, I hope to help others)
xor
- 动态的寻找一个区间一定长度内几个数的区间异或最大值(Find the maximum value of the interval)
示例一运行代码
- 利用粒子群优化算法寻找最优解,从而找到最大值的问题(In order to find the maximum value, the particle swarm optimization algorithm is used to find the optimal solution.)
粒子群算法
- SO算法就是模拟一群鸟寻找食物的过程,每个鸟就是PSO中的粒子,也就是我们需要求解问题的可能解,这些鸟在寻找食物的过程中,不停改变自己在空中飞行的位置与速度。大家也可以观察一下,鸟群在寻找食物的过程中,开始鸟群比较分散,逐渐这些鸟就会聚成一群,这个群忽高忽低、忽左忽右,直到最后找到食物。这个过程我们转化为一个数学问题。寻找函数 y=1-cos(3*x)*exp(-x)的在[0,4]最大值。(SO algorithm is the simulation of a flock of birds f
yichuan
- 遗传算法 变异 交叉 迭代 最大值 寻找最优解(genetic algorithm)
寻找最大值和第二大值
- 控制台程序,利用vc编制程序,搜索最大值和第二大值的方法,成功实现所给一维数组中最大值和第二大值的寻找,方便程序寻优移植。