[Offoffoffer] refers to the Fibonacci series, and the sword refers to the Offer Fibonacci series.

Source: Internet
Author: User

[Offoffoffer] refers to the Fibonacci series, and the sword refers to the Offer Fibonacci series.
Problem description

We all know that the Fibonacci series requires an integer n. Please output the nth entry of the Fibonacci series.

Algorithm Analysis

This is relatively basic. I can write the meaning of the Fibonacci series. It should be noted that when you click this question on Niuke's Internet, recursion cannot be used, and Recursion times out.

Code Implementation
Class Solution10 {public: int Fibonacci (int n) {if (n = 0) {return 0;} if (n = 1) {return 1 ;} int r = 0; int r1 = 0, r2 = 1; for (int I = 1; I <n; I ++) {r = r1 + r2; r1 = r2; r2 = r ;}return r ;}};

Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.

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.