The Fibonacci sequence of recursion

Source: Internet
Author: User

Mathematically, the number of charges is defined in a recursive way:

  • (n≧2)

In words, the Fibonacci sequence begins with 0 and 1, and then the Fibonacci sequence is added from the previous two numbers.

This is also from Wikipedia on the expression, comparative professional points. The simple one is to write the previous few:

0,1,1,2,3,5,8,13,21,34,55,89,144,233 ......

This is also an exponential growth phenomenon, so if rabbits all grow at this rhythm, then every day there is meat to eat, but also cheap!!!

This problem is relative to the Hanoi tower problem, compared to me and, Fibonacci sequence at a glance, a good understanding of the comparison.

Let's use Ptyhon to achieve this:

def fib (x):    assert type (x) = = int and x >= 0    if x = = 0 or X = = 1:        return 1    else:        return fib (x-1) + FIB (x-2)

Just say python a few lines of code to get it done.

The Fibonacci sequence of recursion

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.