摘要: 斐波那契数 使用递归: public static int fib(int n){ if(n<=1) return n; return fib(n-1)+fib(n-2); } 不足:存在性能问题当超过64就算不出来了 改进方法: public static int fib2(int n){ if( 阅读全文
posted @ 2021-03-12 23:42 余***龙 阅读(47) 评论(0) 推荐(0) 编辑