[Python] 그래프 탐색 알고리즘: DFS/BFS_팩토리얼
구현 예제 n! = 1 x 2 x 3 x ... x (n-1) x n 수학적으로 0!과 1!의 값은 1 # 반복적으로 구현한 n! def factorial_iterative(n): result = 1 # 1부터 n까지의 수를 차례대로 곱하기 for i in range(1, n + 1): result *= i return result # 재귀적으로 구현한 n! def factorial_recursive(n): if n >> 반복적으로 구현: 120 >>> 재귀적으로 구현: 120
Python/이코테
2022. 6. 11. 19:34