搜索资源列表
compositor
- C++中按用户的需要将一组数据进行排序,并取最大值和最小值-C according to the needs of users of a group of data in order, and take maximum and minimum
1
- 在一个数组A[1..n] 中,同时寻找最大值和最小值[假设 n 为 2 的方幂]。
PostofficeLocation
- 算法设计。简单邮局选址问题。 -- 在一个按照东西和南北方向划分成规整街区的城市里,n个居民点散乱地分布在不同的街区中。用x 坐标表示东西向,用y坐标表示南北向。各居民点的位置可以由坐标(x,y)表示。街区中任意2 点(x1,y1)和(x2,y2)之间的距离可以用数值|x1-x2|+|y1-y2|度量。 居民们希望在城市中选择建立邮局的最佳位置,使n个居民点到邮局的距离总和最小。 编程任务: 给定n 个居民点的位置,编程计算n 个居民点到邮局的距离总和的最小值。
1905
- 很好的搜索: 给你很多长度不定的木棒,将他们分成几组,每组中的总长度作为这组的标示值,请给出一种分组方法,能使得所有标示值中的最小值最大。 Input 多组,每组两行,第一行是一个N和K,代表有N根木棒,分成K组,第二行是N个数字,代表木棒的长度。(N不超过100,K不超过20,每根木棒长度不超过1000) Output 输出所有标示值中的最小值的最大值。 Sample Input 5 3 1 3 5 7 9
L1
- 输入一个字符串(数字),可以输出其最大值、最小值和平均值.
agression
- 最小二乘法 设经验方程是y=F(x),方程中含有一些待定系数an,给出真实值{(xi,yi)|i=1,2,...n},将这些x,y值 代入方程然后作差,可以描述误差:yi-F(xi),为了考虑整体的误差,可以取平方和,之所以要平方是考虑到误差可正可负直接相加可以相互抵消,所以记 误差为: e=∑(yi-F(xi))^2 它是一个多元函数,有an共n个未知量,现在要求的是最小值。所以必然满足对各变量的偏导等于0,于是得到n个方程: de/da1=0 de/da2=0 ...
bloksize
- 演示如何设置窗口的最大,最小值-demonstrated how to set up the biggest window, the minimum
get_max_min
- 设从DATA开始的字节单元存入10个无符号数据,找出该组数据中的最大值和最小值,在屏幕上分别显示这10个数据和最大值、最小值。-established from the beginning byte DATA modules into 10 unsigned data, the data to find the maximum and minimum, the screens showed that 10 data and maximum and the minimum.
cpp
- 用蛮力法解决的Acm icpc试题(求矩阵每一列列和的最小值)。
vb_huangjin
- 规划数学中的黄金分割法,给定目标函数,用黄金分割法求最小值,用VB实现,
1
- 分治求最大最小值 可以很快的求的 时间复杂度比其他算法块多了
3
- 求第K个最小值 比2分法还快的算法 只要比N-1次就行
saddlepoint
- 在m×n的矩阵中有一个元素a[i,j]满足下述条件:a[i,j]既是第i行元素中的最小值,又是第j列元素中的最大值(称为鞍点),此程序是求矩阵鞍点的算法
求最小Hamilton回路
- 求最小Hamilton回路功能:在n个顶点的带权图G中,一条Hamilton回路是一顶点序列v1,v2,• • • • vn 其中,每个顶点vi由一条边连到vi+1(i=1,2,• • • • • ,n-1),而vn被连到v1。在所有的Hamilton回路中,寻找一条权值和最小的回路,这条回路就是最小Hamilton回路-circuit for the smallest functional Hamilto
随机最小值
- 一个算随机最小值的小程序,是我刚开始学C语言时编的程序之一。-a minimum count of small random process, I have just started to learn the C language when one part of the process.
最小值
- 一个求最小值的小程序,是我刚开始学C语言时编的程序之一。-the minimum for a small program, I have just started to learn the C language when one part of the process.
汇编程序 最大值最小值平均值
- 汇编程序 最大值最小值平均值
tekey4 输出该数组中的最小值
- 要求程序的功能是:把20个随机数存入一个数组,然后输出该数组中的最小值。-Required functionality of the program are: the 20 random numbers into an array, then output the minimum value of the array.
huibian
- 汇编语言写的几个简单的汇编小程序,有求三个无符号数的最大值,求十个数中的最大最小值,将十进制数转换成十六进制数,统计字符串中字母、数字等的个数、输出字符串等简单汇编小程序,适合初学者-Written in assembly language, the compilation of a small number of simple procedures, seeking the maximum of three unsigned, seeking the maximum and minimum n
数组列最大值
- 求二维数组按照列的最大值,最小值。直接就可以用了(Find a two-dimensional array, according to the maximum value of the column, the minimum value. You can use it directly)