Skip to content
New issue

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

LeetCode题解:70. 爬楼梯,递归+哈希表,JavaScript,详细注释 #117

Open
chencl1986 opened this issue Aug 1, 2020 · 0 comments

Comments

@chencl1986
Copy link
Owner

原题链接: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);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant