70. Climbing Stairs, 70 climbingstairs

Source: Internet
Author: User

70. Climbing Stairs, 70 climbingstairs

You are climbing a stair case. It takesNSteps to reach to the top.

Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?

The recursive formula is f (n) = f (n-1) + f (n-2)

Each element only depends on the first two elements.

 

1 class Solution {2 public: 3 int climbStairs (int n) {4 int result [3] = {0, 1, 2}; 5 if (n <3) {6 return result [n]; 7} 8 9 int f1 = 1; 10 int f2 = 2; 11 int fn = 0; 12 13 for (int I = 3; I <= n; I ++) {14 fn = f1 + f2; 15 f1 = f2; 16 f2 = fn; 17} 18 return fn; 19} 20 };

 

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.