摘要: LeetCode 1137 第 N 个泰波那契数 递归tag,类似斐波那契,递归解法很简洁 1 class Solution { 2 public: 3 int tribonacci(int n) { 4 if(0==n) 5 return 0; 6 else if(1==n) 7 return 1 阅读全文
posted @ 2020-05-24 22:48 CofJus 阅读(142) 评论(0) 推荐(0) 编辑