码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode: Climbing Stairs

时间:2014-05-23 08:31:02      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   java   

用了DP的方法,还有hashtable

bubuko.com,布布扣
 1 import java.util.*;
 2 
 3 public class Solution {
 4     public int climbStairs(int n) {
 5         Hashtable<Integer, Integer> table = new Hashtable<Integer, Integer>();
 6         table.put(2, 2);
 7         table.put(1, 1);
 8         table.put(0, 0);
 9         if (n < 0) return 0;
10         return climb(n, table);
11     }
12     
13     public int climb(int n, Hashtable<Integer, Integer> table) {
14         if (table.containsKey(n)) return table.get(n);
15         else {
16             table.put(n, climb(n-1, table) + climb(n-2, table));
17             return table.get(n);
18         }
19     }
20 }
bubuko.com,布布扣

 

Leetcode: Climbing Stairs,布布扣,bubuko.com

Leetcode: Climbing Stairs

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/EdwardLiu/p/3738086.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!