美文网首页
斐波那契

斐波那契

作者: fuchina | 来源:发表于2018-04-08 17:22 被阅读0次

    - (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