记录一下,用数组作为存储器,减少暴力递归的运算量,该算法的时间复杂度应该为O(n) const store = [0,1,1] function Fibonacci(n){ if(n<=2) return 1 if (store[n]){ return st...