iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 9
1
自我挑戰組

透過JavaScript學習演算法與資料結構系列 第 9

堆積排序法(Heap Sort)

  • 分享至 

  • xImage
  •  

這次我們選擇Max Heap來演示,而重點在先構建好Max Heap然後交換頂層節點值與底層節點值。

先看這段影片
Yes

程式碼如下:

function maxHeap(arr, parentIndex,arrLength) {
  const leftIndex = 2 * parentIndex + 1;
  const rightIndex = leftIndex + 1;
  let max = parentIndex;

  //If the left value is bigger than max value,the left value be the max value.
  if (leftIndex < arrLength && arr[leftIndex] > arr[max]) {
    max = leftIndex;
  }
  //If the right value is bigger than max value,the right value be the max value.
  if (rightIndex < arrLength && arr[rightIndex] > arr[max]) {
    max = rightIndex;
  }

  //If the max value is not parent node value,we exchange the two.
  if (max !== parentIndex) {
    [arr[parentIndex],arr[max]]=[arr[max],arr[parentIndex]];
    //Do again to make a max heap.
    maxHeap(arr,max,arrLength);
  }
}

function heapSort(arr) {   
  const arrLength = arr.length;
  let parentIndex=Math.floor(arrLength / 2);
  let lastChildIndex=arrLength-1;

  while(parentIndex >= 0){
    maxHeap(arr,parentIndex,arrLength);
    parentIndex--;
  };

  while(lastChildIndex >= 0){
    //Exchange the top node value and the last child node value.
    [arr[0],arr[lastChildIndex]]=[arr[lastChildIndex],arr[0]];
    maxHeap(arr, 0,lastChildIndex);
    lastChildIndex--;
  }

  return arr;
}

const arr=[4,2,8,6,0,5,1,7,3,9];
console.log(heapSort(arr));

完整程式碼


上一篇
快速排序法(Quick Sort)
下一篇
計數排序法(Counting Sort)
系列文
透過JavaScript學習演算法與資料結構30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言