Develop
2003.04.23 09:46
[c] 하노이탑 - 재귀함수
조회 수 10783 댓글 0
Tower of Hanoi - Recursive
#include<stdio.h>
void move(int n, char from, char to, char c)
{
if(n>0){
move(n-1,from,c,to);
printf("%d 디스크를 %c에서 %c로 이동n",n,from,to);
move(n-1,c,to,from);
}
}
void main()
{
int n;
printf("몇개의 디스크 입니까? : ");
scanf("%d",&n);
move(n,'L','R','C');
}-
Read More
[sql] 간단한 SQL 문법 정리
-
Read More
[c] 간단한 채팅(클라이언트/서버) 프로그램 소스
-
Read More
[c] 팩토리얼.. - 재귀함수
-
Read More
[c] 하노이탑 - 재귀함수
-
Read More
[c] 소수점 반올림^^
-
Read More
[c] 최대공약수 알고리즘 (유클릿)
-
Read More
[php] whois정보 조회 프로그램
-
Read More
[c] 간단한 링크드 리스트(linked list) 자료형 예제..
-
Read More
[c] CGI Library to C^^
-
Read More
[c] scanf(), printf() 포맷의 형변환
-
Read More
[c] home env stack overflow
-
Read More
[c] 파일입출력 간단한 설명