LeetCode
飘剑如虹
这个作者很懒,什么都没留下…
展开
-
58. Lengthof Last Word
58. Lengthof Last WordGiven a string s consistsof upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.If the last word does not exist, return0.Note:...原创 2018-03-18 19:31:59 · 104 阅读 · 0 评论 -
70. Climbing Stairs
假设梯子有n层,那么如何爬到第n层呢,因为每次只能爬1或2步,那么爬到第n层的方法要么是从第n-1层一步上来的,要不就是从n-2层2步上来的,所以递推公式非常容易的就得出了:dp[n] = dp[n-1] + dp[n-2]。 由于斐波那契额数列的求解可以用递归,所以我最先尝试了递归,拿到OJ上运行,显示Time Limit Exceeded,就是说运行时间超了,因为递归计算了很多分支,效率很低,...转载 2018-03-18 19:44:22 · 109 阅读 · 0 评论