动态规划算法01背包问题PPT
- 例:输出Fibonacii数列的第n项的递归算法#include <stdio.h>int fib(int n){ if (n<=1) return 1; else return
动态规划算法01背包问题PPT