일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 2015 봄학기 알고리즘
- centuryFromYear
- cpp
- 수 정렬하기
- 10953
- flask
- adjacentElementsProduct
- Sequential Search
- almostIncreasingSequence
- All Longest Strings
- 파이썬머신러닝완벽가이드
- C++
- Numpy
- shapeArea
- collections.deque
- til
- Python
- Daily Commit
- data_structure
- 파이썬 포렌식
- codesingal
- 백준
- recursion
- 2750
- Counting cells in a blob
- baekjun
- markdown
- matrixElementsSum
- codesignal
- 피보나치 수
Archives
- Today
- Total
Introfor
하노이의 탑 본문
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #include<stdio.h> void hanoi(int n, int from, int by, int to){ if (n == 1) printf("\nMove from %d to %d", from, to); else{ hanoi(n - 1, from, to, by); printf("\nMove from %d to %d", from, to); hanoi(n - 1, by, from, to); } } int main(void){ int i = 3; hanoi(i, 1, 2, 3); return 0; } | cs |
'Doing > C&C++' 카테고리의 다른 글
Russian Peasant Multiplication (0) | 2017.10.02 |
---|---|
피보나치(반복, 재귀) (0) | 2017.09.18 |
팩토리얼(반복, 재귀) (0) | 2017.09.05 |
구조체 활용 (0) | 2017.05.25 |
구조체 활용 (0) | 2017.05.22 |
Comments