Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

새싹교실/2012/열반/120514

From ZeroWiki
Revision as of 15:20, 14 May 2012 by imported>joojis

출석 및 진행

  • 권우성
  • 채유빈
  • 약 1시간 30분 진행

수업 내용

재귀함수 복습

팩토리얼

int fact(int n)
{
	if(n<=1){
		return 1;
	}else{
		return n*fact(n-1);
	}
}

하노이탑

void hanoi(int n, int a, int b, int c)
{
	if(n==1){
		printf("%d --> %d\n", a, c);
	}else{
		hanoi(n-1. a. c. b);
		hanoi(1, a, b, c);
		hanoi(n-1, b, a, c);
	}
}

포인터와 주소

포인터