2019年6月1日
摘要: 斐波那契数的关键就是下述:F(0) = 0, F(1) = 1 F(N) = F(N - 1) + F(N - 2), 其中 N > 1.很简单: class Solution { public int fib(int N) { if(N == 0) { return 0; } if(N == 1... 阅读全文
posted @ 2019-06-01 09:28 imimtks 阅读(139) 评论(0) 推荐(0) 编辑