학점교류로 듣는 숙명여대 자료구조 day 2. 2021.12.23. 목 day 3. 2021.12.24. 금 Recursion Introduction Factorial GCD Binary Search Fibonacci Numbers Hanoi Tower Permutation N Queens Problem Recursion Introduction a function is called by itself while running "divide & conquer" strategy possible when the same task is repeated with exit condition Iterative function with if-else or while can be rewritten in recursion ..