Python development [algorithm]: time complexity of the Fibonacci series, python Fibonacci

Source: Internet
Author: User

Python development [algorithm]: time complexity of the Fibonacci series, python Fibonacci
Fibonacci Series

Overview:

The Fibonacci series, also known as the Golden split series, refers to a series of 0, 1, 1, 2, 3, 5, 8, 13, 21, 34 ,...... In mathematics, the Fibonacci sequence is defined as follows in a recursive method: F (0) = 0, F (1) = 1, F (n) = F (n-1) + F (n-2) (n ≥ 2, n ε N *) in modern physics, quasi-crystal structure, chemistry and other fields, Fibonacci series have direct application, therefore, the American Data society has published a mathematics magazine named the quarterly Fibonacci series since 1963 to publish research results in this area.

 

Solution:

F (n), which solves the Fibonacci series, has two common algorithms: recursive algorithm and non-recursive algorithm. Analyze the time complexity of the two algorithms.

1 Recursive Algorithm

#!/usr/bin/env python# -*- coding:utf-8 -*-def fibonacci(n):    if n == 0:        return 0    elif n <= 2:        return 1    else:        return fibonacci(n-1) + fibonacci(n-2)fibonacci(100)

Time Complexity: To solve F (n), we must first calculate F (n-1) and F (n-2), calculate F (n-1) and F (n-2 ), you must first calculate F (n-3) and F (n-4 )...... And so on until the values of F (1) and F (0) must be calculated first, and then the results of F (n-1) and F (n-2) are obtained in reverse order to obtain F (n) A lot of repeated values need to be calculated, which creates a great waste of time. The time complexity of the algorithm increases exponentially with the increase of N, and the time complexity is O (2 ^ n ), that is, the Npower of 2

2 Non-Recursive Algorithms

#!/usr/bin/env python# -*- coding:utf-8 -*-def fibonacci(n):    if n == 0:        return 0    elif n <= 2:        return 1    else:        num1 = 1        num2 = 1        for i in range(2,n-1):            num2 = num2 + num1            num1 = num2 - num1        return num1 + num2print(fibonacci(100))

Algorithm complexity: From n> 2, the results are obtained by adding the numbers F (n-1) and F (n-2), which avoids a large number of repeated computations, it is much more efficient than recursive algorithms. The time complexity of algorithms is proportional to n, that is, the time complexity of algorithms is O (n)

 

Related Article

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.