剑指Offer-斐波那契数列

斐波那契数列

题目描述:
  大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项。

解题思路:
  斐波那契数列:0、1、1、2、3、5、8、13、21、34、……
这里注意:
第0项:0;
第1项:1;
第2项:1;
第3项:2;
。。。

下面是我的Java源代码

public class Solution {
    public int Fibonacci(int n) {
        if(n == 0 || n == 1){
            return n;
        }else{
            int a = 1;
            int b = 1;
            int  i  = 2;
            while(i

你可能感兴趣的:(算法分析篇,数据结构与算法分析)