真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

AJPFX中怎么通過索引獲取最大值

本篇文章給大家分享的是有關(guān)AJPFX中怎么通過索引獲取最大值,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

創(chuàng)新互聯(lián)建站是一家專注于做網(wǎng)站、成都網(wǎng)站建設(shè)與策劃設(shè)計(jì),鹿寨網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)建站做網(wǎng)站,專注于網(wǎng)站建設(shè)十載,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:鹿寨等地區(qū)。鹿寨做網(wǎng)站價(jià)格咨詢:028-86922220

/**
* 通過索引獲取最大值
*/
public class Test1 {
        public static void main(String[] args) {
                int[] arr = {11,22,33,44,55,66};
                int max = getMax(arr);
                System.out.println(max);
                System.out.println("=======================");
                int max2 = getMaxByIndex(arr);
                System.out.println(max2);
                
                System.out.println("----------------------");
                int max3 = getMax(arr, true);
                System.out.println(max3);
                System.out.println("**************************");
                int max4 = getMax(arr,false);
                System.out.println(max4);
        }
        //通過假定數(shù)組中的第一個(gè)元素是最大值,然后不斷的進(jìn)行判斷,最終獲取對(duì)大值
        public static int getMax(int[] arr){
                int max = arr[0];//假設(shè)數(shù)組的第一個(gè)元素為最大值
                for(int i=0;i                        if(max                                max = arr[i];
                        }
                }
                return max;
        }
        /**
         * 此方法可以求出數(shù)組對(duì)應(yīng)的最大值或者最小值
         * @param arr
         * @param flag :true:表示求最大值,false:表示求最小值
         * @return
         */
        public static int getMax(int[] arr,boolean flag){
                int max = arr[0];//假設(shè)數(shù)組的第一個(gè)元素為最值
                for(int i=0;i                        if(flag) {
                                if(max                                        max = arr[i];
                                }                                
                        } else {
                                if(max>arr[i]) {
                                        max = arr[i];
                                }
                        }
                }
                return max;
        }
        
        //通過獲取最大值的角標(biāo),最終返回該角標(biāo)對(duì)應(yīng)的數(shù)值
        public static int getMaxByIndex(int[] arr){
                int max = 0;//假設(shè)數(shù)組的角標(biāo)為0的元素是最大的
                for(int i=0;i                        if(arr[max]                                max = i; //max中存儲(chǔ)的是當(dāng)前最大值所對(duì)應(yīng)的角標(biāo)
                        }
                }
                return arr[max];
        }
        
}

以上就是AJPFX中怎么通過索引獲取最大值,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


名稱欄目:AJPFX中怎么通過索引獲取最大值
文章位置:http://weahome.cn/article/jjjscs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部