JS 100제 문제 55 하노이의 탑

이민정·2021년 4월 11일
0

JS100제

목록 보기
44/66


<풀이 코드>

const route = [];

function hanoi(num, start, end, temp){
  //원판이 한 개일 때에는 바로 옮기면 됩니다.
  if (num === 1) {
    route.push([start, end]);
    return NaN;
  }

  //원반이 n-1개를 경유기둥으로 옮기고
  hanoi(num-1,start,temp,end);
  //가장 큰 원반은 목표기둥으로
  route.push([start,end]);
  //경유기둥과 시작기둥을 바꿉니다.
  hanoi(num-1,temp,end,start);
}

hanoi(3, 'A', 'B', 'C');
console.log(route);
console.log(route.length);
profile
공부하자~!

0개의 댓글

관련 채용 정보