這篇文章主要介紹“java數(shù)組排序的方法”,在日常操作中,相信很多人在java數(shù)組排序的方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”java數(shù)組排序的方法”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
創(chuàng)新互聯(lián)主要從事網(wǎng)站建設(shè)、成都做網(wǎng)站、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)十堰,10余年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18982081108
/** *將數(shù)組中的兩個指定下標(biāo)的元素交換位置 *@param arr 要交換元素的數(shù)組引用地址值 *@param a 數(shù)組索引 *@param b 數(shù)組索引 */ private static void swap(int[] arr,int a,int b){ int temp=arr[a]; arr[a]=arr[b]; arr[b]=temp; } /** *冒泡排序 *@param arr 將要排序的數(shù)組引用地址值 *@param type true表示順序排序,false表示逆序排序 */ public static void bubbleSort(int[] arr, boolean type){ if(type){ for(int i=0;iarr[j+1]){ swap(arr,j,j+1); } } } }else{ for(int i=0;i arr[j]){ swap(arr,i,j); } } } }else{ for(int i=0;i x) j--; if(i x) i++; if(i 到此,關(guān)于“java數(shù)組排序的方法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
網(wǎng)頁題目:java數(shù)組排序的方法
文章路徑:http://weahome.cn/article/jocsog.html