怎么在Java中對(duì)多線程進(jìn)行排序?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。
成都創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),景德鎮(zhèn)企業(yè)網(wǎng)站建設(shè),景德鎮(zhèn)品牌網(wǎng)站建設(shè),網(wǎng)站定制,景德鎮(zhèn)網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷(xiāo),網(wǎng)絡(luò)優(yōu)化,景德鎮(zhèn)網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專(zhuān)業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。
Java的特點(diǎn)有哪些 1.Java語(yǔ)言作為靜態(tài)面向?qū)ο缶幊陶Z(yǔ)言的代表,實(shí)現(xiàn)了面向?qū)ο罄碚?,允許程序員以優(yōu)雅的思維方式進(jìn)行復(fù)雜的編程。 2.Java具有簡(jiǎn)單性、面向?qū)ο?、分布式、安全性、平臺(tái)獨(dú)立與可移植性、動(dòng)態(tài)性等特點(diǎn)。 3.使用Java可以編寫(xiě)桌面應(yīng)用程序、Web應(yīng)用程序、分布式系統(tǒng)和嵌入式系統(tǒng)應(yīng)用程序等。
1.先試一下我們不用多線程的情況,以快速排序?yàn)槔?/strong>
package advance1;/* * @Author: Gnight * @Date: 2020/12/17 23:32 * @Description: 單線程的快速排序,太多數(shù)據(jù)棧會(huì)溢出 */ import java.util.Arrays; public class JavaDemo { public static int[] arr; public static void main(String[] args) { //隨機(jī)生成數(shù)值 arr = new int[100]; for (int i = 0; i < arr.length; i++) { arr[i] = (int) (Math.random() * 1000); } new JavaDemo().doSort(0, arr.length - 1); for (int element : arr) { System.out.println(element); } } public void doSort(int low, int high) { if (low < high) { int index = quickSort(low, high);//實(shí)際的排序流程 doSort(low, index - 1); doSort(index + 1, high); } } public int quickSort(int i, int j) { int key = arr[i];//基準(zhǔn)值 while (i < j) { //找出第一個(gè)右邊要交換的 while (i < j && arr[j] >= key) j--; if (i < j) arr[i] = arr[j]; //找出第一個(gè)左邊要交換的 while (i < j && arr[i] <= key) i++; if (i < j) arr[j] = arr[i]; } // i== j的情況 arr[i] = key; return i; } }
2.數(shù)據(jù)分段
//根據(jù)我們?cè)O(shè)立的線程數(shù)來(lái)分段 for (int i = 0; i < threadNum; i++) { int[] temp = Arrays.copyOfRange(arr, i * arr.length / threadNum, (i + 1) * arr.length / threadNum); //theadNum就是線程數(shù) } 快排線程:采用Callable接口,可以有返回值 package advance1;/* * @Author: Gnight * @Date: 2020/12/17 19:10 * @Description: 多線程實(shí)現(xiàn)快排 */ import java.util.concurrent.Callable; import java.util.concurrent.CountDownLatch; //快排多線程 public class sortThread implements Callable<int[]> { private int[] arr; private int low; private int high; private CountDownLatch count; public sortThread(int[] arr, int low, int high, CountDownLatch count) { this.arr = arr; this.low = low; this.high = high; this.count = count; } public int[] call() throws Exception { System.out.println("線程 " + Thread.currentThread().getName() + " 開(kāi)始"); doSort(low, high); int[] res = new int[high - low + 1]; int index = 0; for (int i = low; i < high + 1; i++) { res[index++] = arr[i]; } try { return arr; } finally { count.countDown(); System.out.println("線程 " + Thread.currentThread().getName() + " 結(jié)束"); } } public void doSort(int low, int high) { if (low < high) { int index = quickSort(low, high);//實(shí)際的排序流程 doSort(low, index - 1); doSort(index + 1, high); } } public int quickSort(int i, int j) { int key = arr[i];//基準(zhǔn)值 while (i < j) { //找出第一個(gè)右邊要交換的 while (i < j && arr[j] >= key) j--; if (i < j) arr[i] = arr[j]; //找出第一個(gè)左邊要交換的 while (i < j && arr[i] <= key) i++; if (i < j) arr[j] = arr[i]; } // i== j的情況 arr[i] = key; return i; } }
3.創(chuàng)建多線程,使用CountDownLatch保證前面都完成后再對(duì)數(shù)據(jù)段合并
try { CountDownLatch count = new CountDownLatch(threadNum); for (int i = 0; i < threadNum; i++) { int[] temp = Arrays.copyOfRange(arr, i * arr.length / threadNum, (i + 1) * arr.length / threadNum); Future<int[]> future = pool.submit(new sortThread(temp, 0, temp.length - 1, count)); res[i] = future.get(); } /* 使用CountDownLatch來(lái)保證前面線程都排序完,然后對(duì)排序完的升序數(shù)組合并 */ count.await(); //這里排序亦可使用多線程 int[] m1 = merge(res[0], res[1]); int[] m2 = merge(res[2], res[3]); arr = merge(m1, m2); } catch (Exception e) { e.printStackTrace(); }
看完上述內(nèi)容,你們掌握怎么在Java中對(duì)多線程進(jìn)行排序的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
當(dāng)前標(biāo)題:怎么在Java中對(duì)多線程進(jìn)行排序
URL網(wǎng)址:http://jinyejixie.com/article46/gdphhg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App開(kāi)發(fā)、網(wǎng)站策劃、做網(wǎng)站、全網(wǎng)營(yíng)銷(xiāo)推廣、用戶體驗(yàn)、網(wǎng)站導(dǎo)航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)