1. stair climbing print out all of possible solutions of the methods to climb a stars, you are allowed climb one or two steps for each time; what is time/space complexity? use recursion

这道题难是难在这个ArrayList<String> res是用在argument还是返回值,纠结了好久

Recursion 解法:

  1. package fib;
  2.  
  3. import java.util.ArrayList;
  4.  
  5. public class climbingstairs {
  6.  
  7. public ArrayList<String> climb (int n) {
  8. if (n <= 0) return null;
  9. ArrayList<String> res = new ArrayList<String>();
  10. if (n == 1) {
  11. res.add("1");
  12. return res;
  13. }
  14. if (n == 2) {
  15. res.add("2");
  16. res.add("12");
  17. return res;
  18. }
  19. ArrayList<String> former2 = climb(n-2);
  20. for (String item : former2) {
  21. res.add(item+Integer.toString(n));
  22. }
  23. ArrayList<String> former1 = climb(n-1);
  24. for (String item : former1) {
  25. res.add(item+Integer.toString(n));
  26. }
  27. return res;
  28. }
  29.  
  30. public static void main(String[] args) {
  31. climbingstairs obj = new climbingstairs();
  32. ArrayList<String> res = obj.climb(6);
  33. for (String item : res) {
  34. System.out.println(item);
  35. }
  36. }
  37.  
  38. }

Sample input : 6

Sample Output:

246
1246
1346
2346
12346
1356
2356
12356
2456
12456
13456
23456
123456

follow up: could you change the algorithm to save space?

这就想到DP,用ArrayList<ArrayList<String>>

  1. import java.util.ArrayList;
  2.  
  3. public class climbingstairs {
  4.  
  5. public ArrayList<String> climb (int n) {
  6. if (n <= 0) return null;
  7. ArrayList<ArrayList<String>> results = new ArrayList<ArrayList<String>>();
  8. for (int i=1; i<=n; i++) {
  9. results.add(new ArrayList<String>());
  10. }
  11. if (n >= 1) {
  12. results.get(0).add("1");
  13. }
  14. if (n >= 2) {
  15. results.get(1).add("2");
  16. results.get(1).add("12");
  17. }
  18.  
  19. for (int i=3; i<=n; i++) {
  20. ArrayList<String> step = results.get(i-1);
  21. ArrayList<String> former2 = results.get(i-3);
  22. for (String item : former2) {
  23. step.add(item+Integer.toString(i));
  24. }
  25. ArrayList<String> former1 = results.get(i-2);
  26. for (String item : former1) {
  27. step.add(item+Integer.toString(i));
  28. }
  29. }
  30. return results.get(n-1);
  31. }
  32.  
  33. public static void main(String[] args) {
  34. climbingstairs obj = new climbingstairs();
  35. ArrayList<String> res = obj.climb(5);
  36. for (String item : res) {
  37. System.out.println(item);
  38. }
  39. }
  40.  
  41. }

Climbing Stairs - Print Path的更多相关文章

  1. LeetCode练题——70. Climbing Stairs

    1.题目 70. Climbing Stairs——Easy You are climbing a stair case. It takes n steps to reach to the top. ...

  2. [LeetCode] Climbing Stairs 爬梯子问题

    You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb ...

  3. [LintCode] Climbing Stairs 爬梯子问题

    You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb ...

  4. Leetcode: climbing stairs

    July 28, 2015 Problem statement: You are climbing a stair case. It takes n steps to reach to the top ...

  5. 54. Search a 2D Matrix && Climbing Stairs (Easy)

    Search a 2D Matrix Write an efficient algorithm that searches for a value in an m x n matrix. This m ...

  6. Climbing Stairs

    Climbing Stairs https://leetcode.com/problems/climbing-stairs/ You are climbing a stair case. It tak ...

  7. 3月3日(6) Climbing Stairs

    原题 Climbing Stairs 求斐波那契数列的第N项,开始想用通项公式求解,其实一个O(n)就搞定了. class Solution { public: int climbStairs(int ...

  8. leetCode 70.Climbing Stairs (爬楼梯) 解题思路和方法

    Climbing Stairs  You are climbing a stair case. It takes n steps to reach to the top. Each time you ...

  9. 【LeetCode练习题】Climbing Stairs

    Climbing Stairs You are climbing a stair case. It takes n steps to reach to the top. Each time you c ...

随机推荐

  1. BS架构与CS架构的区别(最全)

    C/S结构,即Client/Server(客户机/服务器)结构,是大家熟知的软件系统体系结构,通过将任务合理分配到Client端和Server端,降低了系统的通讯开销,可以充分利用两端硬件环境的优势. ...

  2. P1541 乌龟棋

    30分做法,暴力枚举: #include <bits/stdc++.h> using namespace std; const int maxn = 400; int n, m; int ...

  3. php 请求参数限制

    公司有个群发短信的小项目,项目上线了很久也没有什么问题,最近有商家说 我短信群发不能用 现象是:发现有时候可以发送,有时候不可以发送,看截图发送的手机数量不一样 通过调试php代码发现 php 只接受 ...

  4. CC2540 USB DONGLE 使用 BTool 调试BLE 说明

    一.Btool软件界面介绍 首先您要将USBDONGLE插入电脑的USB口,然后打开双击打开Btool软件,打开后如下图所示: 在安装驱动的教程中,我们已经记住了我们的USB DONGLE的串口号,在 ...

  5. 各个JSON技术的比较

    JSON技术的调研报告 一 .各个JSON技术的简介和优劣1.json-libjson-lib最开始的也是应用最广泛的json解析工具,json-lib 不好的地方确实是依赖于很多第三方包,包括com ...

  6. oracle中截取某个字符前面和后面的值

    创建测试表及数据 create table test(name varchar2(10)); insert into test values ('2-15');insert into test val ...

  7. 去除undefined和末尾逗号及把字符串数字转成数字数组的方法

    function removeundefined(str){   var v=new Array(),b="";   var tmp=fil(str); for(var i=0;i ...

  8. imx6 uboot lvds clock

    在uboot中添加logo,lvds接口的lcd显示不正常,出现波动.网上说是lvds时钟频率的问题. 使用示波器测量之后,发现频率是60M,而lcd最大频率才46.8M. 因此就需要更改uboot中 ...

  9. 如何在intellj Idea中给新建的项目添加jar包?

    1. 假如我加入joda.jar 2. 找到发布的你想要的jar包,下载! 3. 解压刚下载的jar包,复制 4. 在intellj idea中新建一个java项目,然后创建一个专门用于放jar的li ...

  10. cat 命令(转)

    cat命令的用途是连接文件或标准输入并打印.这个命令常用来显示文件内容,或者将几个文件连接起来显示,或者从标准输入读取内容并显示,它常与重定向符号配合使用. 1.命令格式: cat [选项] [文件] ...