/** * 求数组中的最大值 * * @param a */ public double maxElement(double a[]) { double max = a[0]; for (int i = 0; i max) { max = a[i]; ... ...
分类:
编程语言 时间:
2017-12-22 16:36:46
阅读次数:
118
vector<int> v: 最大值: int max = *max_element(v.begin(),v.end()); 最小值: int min = *min_element(v.begin(),v.end()); ...
分类:
其他好文 时间:
2017-12-14 13:29:40
阅读次数:
159
//Created by pritry int graph[MAX][MAX]; //原图 int source; //起点,这里为0 int sink; //终点,这里为n-1 int e[MAX]; //余流 int h[MAX]; //高度 int n; //顶点数 struct Lab... ...
分类:
Web程序 时间:
2017-12-14 03:35:59
阅读次数:
215
自写的银行家算法 献丑献丑 #include<windows.h>#include<iostream>using namespace std; int Max[5][3] = { { 7,5,3 },{ 3,2,2 },{ 9,0,2 },{ 2,2,2 },{ 4,3,3 } };int Allo ...
分类:
编程语言 时间:
2017-12-13 02:06:26
阅读次数:
199
三元运算符,它和if-else语句类似,语法如下: 判断条件 ? 表达式1 : 表达式2 例如求两个数x、y中的较大者,如果用if…else语句来实现,具体代码如下: int x = 0; int y = 1; int max; if (x > y) { max = x; } else { max ...
分类:
其他好文 时间:
2017-12-12 21:49:30
阅读次数:
234
jdk中有3个常量来定义优先级 public final static int MIN_PRIOPITY = 1; public final static int NORM_PRIOPITY = 5; public final static int MAX_PRIOPITY = 10; 在java中 ...
分类:
其他好文 时间:
2017-12-03 18:56:30
阅读次数:
201
java.lang.Math : 绝对值: static int abs(int a) static long abs(long a) static float abs(float a) static double abs(double a) 极值: static int max(int a, in ...
分类:
编程语言 时间:
2017-11-18 14:21:19
阅读次数:
345
#include <iostream> using namespace std; int max(int x ,int y,int z); int main(){ int a,b,c,m; cout<<"请你输入三个整型的数字:"<<endl; cin>>a>>b>>c; m=max(a,b,c); ...
分类:
其他好文 时间:
2017-11-10 00:33:32
阅读次数:
199
#include <iostream> using namespace std; int max(int x,int y,int z=0); int main(){ int a,b,c,m; cout<<"请你输入两个整型的数字:"<<endl; cin>>a>>b; m=max(a,b); cou ...
分类:
其他好文 时间:
2017-11-10 00:24:56
阅读次数:
203