We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
原题链接:https://leetcode-cn.com/problems/climbing-stairs/
该题其实就是求解斐波那契数列,可以参考题解【手绘图解】从递归到动态规划,该题解给出的是动态规划解,下面是递归+哈希表解法。
/** * @param {number} n * @return {number} */ var climbStairs = function (n) { // 缓存计算结果 let map = new Map(); const fibonacci = (n) => { if (n === 1) return 1; // 为1时,直接返回1种走法 if (n === 2) return 2; // 为2时,直接返回2种走法 if (map.get(n)) return map.get(n); // 若已缓存,则返回缓存结果 let result = fibonacci(n - 1) + fibonacci(n - 2); // 其结果为n-1和n-2的结果之和 map.set(n, result); // 设置缓存,下次直接从Map中读取 return result; }; return fibonacci(n); };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
原题链接:https://leetcode-cn.com/problems/climbing-stairs/
该题其实就是求解斐波那契数列,可以参考题解【手绘图解】从递归到动态规划,该题解给出的是动态规划解,下面是递归+哈希表解法。
The text was updated successfully, but these errors were encountered: