用Java泛型實現堆排序

來源:互聯網
上載者:User
package ch10;public class HeapSort {/** * 篩選演算法,即一次堆調整,調整為大頂堆 * 此演算法假設t[s...m]除了t[s]外已經是一個大頂堆 * @param <T> * @param t  * @param s * @param m * @return true:成功進行一次篩選,false:篩選出錯 */private static <T extends Comparable> boolean heapAdjust(T[] t, int s, int m){if(t==null || t.length==1) return true;T temp = t[s];for(int j = 2*s+1 ; j<=m ; j = 2*j+1){if(j+1<=m && t[j+1].compareTo(t[j]) > 0) j++;if(temp.compareTo(t[j]) >= 0) break;//這個時候之所以能結束迴圈,是因為我們假設此演算法是在t[s...m]除t[s]外已經是大頂堆的情況下進行的t[s] = t[j];s = j;//s是temp應該插入的位置}t[s] = temp;return true;}/** * 堆排序,用大頂堆進行排序,最終得到的是升序數組 * @param <T> * @param t * @return */public static <T extends Comparable> boolean heapSort(T[] t){if(t==null || t.length<=1) return true;for(int i = t.length/2 - 1; i>=0; i--){//此迴圈用於調整原始的數組使其成為大頂堆heapAdjust(t, i, t.length-1);}for(int j = t.length-1; j>0 ;j--){//每次選取對頂元素和最後一個元素交換,然後調整堆,再選取最大元素,直至有序T temp = t[j];t[j] = t[0];t[0] = temp;heapAdjust(t, 0 ,j-1);}return true;}public static void main(String[] args) {Integer[] arr = new Integer[]{2,6,4,1,4,3,2,1,6,4,4,8};HeapSort.<Integer>heapSort(arr);for(int i : arr){System.out.println(i);}}}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.