首页 > 其他 > 详细

Leetcode: Climbing Stairs

时间:2014-05-23 08:30:06      阅读:347      评论:0      收藏:0      [点我收藏+]

用了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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!