본문 바로가기
내일배움 정리/JS 문법 공부

스왑

by GREEN나무 2025. 1. 10.
728x90
 // 부모와 현재 노드의 값을 교환
      [this.heap[parentIndex], this.heap[index]] = [this.heap[index], this.heap[parentIndex]];