我目前正在學習排序算法,需要實現HeapSort和Introspective Sort。 我覺得我已經實現堆排序成功(代碼工作,試圖以百萬計隨機大小進行隨機排列的,總是工作),這裏是我的代碼: public static <T extends Comparable<? super T>> void hsort(T[] a) {
int n = a.length;
if(n <
我遇到了調用不同類中的方法的問題。該方法在其自己的lab14類別中,heapSort()方法位於不同的類別HeapSort中。這兩個類都在默認包中。我收到錯誤「The method heapSort(Vector)is undefined for the Lab14」,我不明白爲什麼,請幫忙。下面 是在實驗室的主要方法14類 public static void main(String args[