반응형
#include <stdio.h> int fib(int n) { if(n<=1) return n; else return fib(n-1)+fib(n-2); } int main() { printf("%d", fib(35)); }
재귀함수를 이용한 기본적인 피보나치 수열 알고리즘을 구현한 소스이다. 간단한 알고리즘이므로 추가 설명은 생략한다.
반응형
'IT 이론 > 자료구조&알고리즘' 카테고리의 다른 글
소팅 알고리즘 정리 (Bubble, Quick, Insert, Select, Heap) (0) | 2014.10.17 |
---|---|
[C언어 소스] 완전이진트리 순회(Complete Binary Tree Traversal) (0) | 2014.10.15 |
File System Implement (0) | 2013.06.12 |
Briefly compare the two heap-construction algorithms (0) | 2013.06.06 |
Branch and bound, BFS 0/1 Knapsack (1) | 2013.06.06 |
댓글