獲取陣列中的最大值,最小值

2021-10-21 22:49:05 字數 673 閱讀 8881

使用索引的方式獲取

方法1:

/**

* 求最大值 最小值

*/public static void arrdemo4() ;

//假設最大值所在的索引是0

int maxindex = 0;

int minindex = 0;

for (int i = 1; i < sort.length; i++)

if (sort[minindex] > sort[i])

}system.out.println("最大值所在的索引號是: " + maxindex);

system.out.println("最小值所在的索引號是: " + minindex);

system.out.println("最大值:"+sort[maxindex]);

system.out.println("最大值:"+sort[minindex]);

}

int

sort =

;int max = sort[0]

;for

(int a : sort)

} system.out.

println

("最大值:"

+max]

);

js獲取陣列中最大值,最小值

es6拓展運算子.1 math.max arr 最大值 2 math.min arr 最小值 遍歷方法 1 var arr 12,14,34,566,34,98,77 2var max arr 0 3for var i 0 i 7 8 console.log max 最大值9 10for var i...

最大值 最小值

求最大最小的時候有點小技巧,就是我們兩個兩個的比較,把大個跟當前最大比較,小的跟當前最小的比較,這樣就會節約一點比較時間,有原來的2 n到3 n 2。include include 得到最大最小值 int getmaxmin int ndata,int nlen,int pnmax,int pnmi...

陣列取最大值最小值

1 陣列取出最大值,最小值的方式 第一種 遍歷一邊陣列就可以找出需要的值,基本上可以說是速度最快的演算法,還不需要排序 int intarray int max intarray 0 int min intarray 0 for int i intarray listl arrays.aslist ...