Notice
Recent Posts
Recent Comments
Link
목록3-1/자료구조 again (11)
dew's CSE Studying
2.4 하노이탑 문제 출력값을 분석해보자!
The Tower of Hanoi [조건]한 번에 하나의 원판만 이동 가능맨 위에 있는 원판만 이동 가능크기가 작은 원판 위에 큰 원판을 쌓는 것 불가능중간의 막대를 임시적으로 이용할 수 있으나 앞의 조건들을 지켜야 함 [코드]#include void hanoi_tower(int n, char from, char tmp, char to){ if(n==1) printf("원판 1을 %c에서 %c으로 옮긴다. \n", from, to); else { hanoi_tower(n-1, from, to, tmp); printf("원판 %d을 %c에서 %c으로 옮긴다. \n", n, from, to); hanoi_tower(n-1, tmp, from, to); }..
3-1/자료구조 again
2024. 10. 14. 18:11