LeetCode, leetcodeoj

Source: Internet
Author: User

LeetCode, leetcodeoj

Question:

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?

Ideas:

The arrival of the current step n is from the n-1 step to come or two steps from the N-2 step

Package dp; public class ClimbingStairs {public int climbStairs (int n) {int [] dp = new int [n + 1]; dp [0] = dp [1] = 1; for (int I = 2; I <= n; ++ I) {dp [I] = dp [I-1] + dp [I-2];} return dp [n];} public static void main (String [] args) {// TODO Auto-generated method stub ClimbingStairs c = new ClimbingStairs (); System. out. println (c. climbStairs (4 ));}}

 

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.