mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-03 21:58:48 +08:00
* docs: add Japanese documents (`ja/docs`) * docs: add Japanese documents (`ja/codes`) * docs: add Japanese documents * Remove pythontutor blocks in ja/ * Add an empty at the end of each markdown file. * Add the missing figures (use the English version temporarily). * Add index.md for Japanese version. * Add index.html for Japanese version. * Add missing index.assets * Fix backtracking_algorithm.md for Japanese version. * Add avatar_eltociear.jpg. Fix image links on the Japanese landing page. * Add the Japanese banner. --------- Co-authored-by: krahets <krahets@163.com>
78 lines
1.9 KiB
C++
78 lines
1.9 KiB
C++
/**
|
|
* File: recursion.cpp
|
|
* Created Time: 2023-08-24
|
|
* Author: krahets (krahets@163.com)
|
|
*/
|
|
|
|
#include "../utils/common.hpp"
|
|
|
|
/* 再帰 */
|
|
int recur(int n) {
|
|
// 終了条件
|
|
if (n == 1)
|
|
return 1;
|
|
// 再帰:再帰呼び出し
|
|
int res = recur(n - 1);
|
|
// 戻り値:結果を返す
|
|
return n + res;
|
|
}
|
|
|
|
/* 反復で再帰をシミュレート */
|
|
int forLoopRecur(int n) {
|
|
// 明示的なスタックを使用してシステムコールスタックをシミュレート
|
|
stack<int> stack;
|
|
int res = 0;
|
|
// 再帰:再帰呼び出し
|
|
for (int i = n; i > 0; i--) {
|
|
// 「スタックへのプッシュ」で「再帰」をシミュレート
|
|
stack.push(i);
|
|
}
|
|
// 戻り値:結果を返す
|
|
while (!stack.empty()) {
|
|
// 「スタックからのポップ」で「戻り値」をシミュレート
|
|
res += stack.top();
|
|
stack.pop();
|
|
}
|
|
// res = 1+2+3+...+n
|
|
return res;
|
|
}
|
|
|
|
/* 末尾再帰 */
|
|
int tailRecur(int n, int res) {
|
|
// 終了条件
|
|
if (n == 0)
|
|
return res;
|
|
// 末尾再帰呼び出し
|
|
return tailRecur(n - 1, res + n);
|
|
}
|
|
|
|
/* フィボナッチ数列:再帰 */
|
|
int fib(int n) {
|
|
// 終了条件 f(1) = 0, f(2) = 1
|
|
if (n == 1 || n == 2)
|
|
return n - 1;
|
|
// 再帰呼び出し f(n) = f(n-1) + f(n-2)
|
|
int res = fib(n - 1) + fib(n - 2);
|
|
// 結果 f(n) を返す
|
|
return res;
|
|
}
|
|
|
|
/* ドライバーコード */
|
|
int main() {
|
|
int n = 5;
|
|
int res;
|
|
|
|
res = recur(n);
|
|
cout << "\n再帰関数の合計結果 res = " << res << endl;
|
|
|
|
res = forLoopRecur(n);
|
|
cout << "\n反復を使用して再帰をシミュレートした合計結果 res = " << res << endl;
|
|
|
|
res = tailRecur(n, 0);
|
|
cout << "\n末尾再帰関数の合計結果 res = " << res << endl;
|
|
|
|
res = fib(n);
|
|
cout << "フィボナッチ数列の第 " << n << " 番目の数は " << res << endl;
|
|
|
|
return 0;
|
|
} |