- (NSInteger)Fibonacci:(NSInteger)n{
if (n == 1 || n == 2) {
return 1;
}
return [self Fibonacci:n -1] + [self Fibonacci:n - 2];
eg:输入10,返回55。
本文标题:斐波那契
本文链接:https://www.haomeiwen.com/subject/plfmhftx.html
网友评论