标签:amp example nbsp 嵌入 class 设计 超时 递归 turn
设计一个函数嵌入在递归中
for example
int F(int n) { if(n<2) return n; if(m[n]) return m[n]; return m[n]=F(n-1)%1000+F(n-2)%1000; }
解决递归超时
原文地址:https://www.cnblogs.com/Fy1999/p/8893109.html