递推与递归 \ DFS深度优先搜索 2025-2-27 11:30 | 239 | 0 | 理论技术 900 字 | 36 分钟 原题单链接:https://www.luogu.com/paste/vjf2z3hi || https://rentry.org/5yhk52ow 例题 跳台阶 #include <bits/stdc++.h> using namespace std; const int N=1e5; int a[N]; int f(int n) { … C/C++DFS算法递归递推