Climbing Stairs - Print Path
- 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 解法:
- package fib;
- import java.util.ArrayList;
- public class climbingstairs {
- public ArrayList<String> climb (int n) {
- if (n <= 0) return null;
- ArrayList<String> res = new ArrayList<String>();
- if (n == 1) {
- res.add("1");
- return res;
- }
- if (n == 2) {
- res.add("2");
- res.add("12");
- return res;
- }
- ArrayList<String> former2 = climb(n-2);
- for (String item : former2) {
- res.add(item+Integer.toString(n));
- }
- ArrayList<String> former1 = climb(n-1);
- for (String item : former1) {
- res.add(item+Integer.toString(n));
- }
- return res;
- }
- public static void main(String[] args) {
- climbingstairs obj = new climbingstairs();
- ArrayList<String> res = obj.climb(6);
- for (String item : res) {
- System.out.println(item);
- }
- }
- }
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>>
- import java.util.ArrayList;
- public class climbingstairs {
- public ArrayList<String> climb (int n) {
- if (n <= 0) return null;
- ArrayList<ArrayList<String>> results = new ArrayList<ArrayList<String>>();
- for (int i=1; i<=n; i++) {
- results.add(new ArrayList<String>());
- }
- if (n >= 1) {
- results.get(0).add("1");
- }
- if (n >= 2) {
- results.get(1).add("2");
- results.get(1).add("12");
- }
- for (int i=3; i<=n; i++) {
- ArrayList<String> step = results.get(i-1);
- ArrayList<String> former2 = results.get(i-3);
- for (String item : former2) {
- step.add(item+Integer.toString(i));
- }
- ArrayList<String> former1 = results.get(i-2);
- for (String item : former1) {
- step.add(item+Integer.toString(i));
- }
- }
- return results.get(n-1);
- }
- public static void main(String[] args) {
- climbingstairs obj = new climbingstairs();
- ArrayList<String> res = obj.climb(5);
- for (String item : res) {
- System.out.println(item);
- }
- }
- }
Climbing Stairs - Print Path的更多相关文章
- LeetCode练题——70. Climbing Stairs
1.题目 70. Climbing Stairs——Easy You are climbing a stair case. It takes n steps to reach to the top. ...
- [LeetCode] Climbing Stairs 爬梯子问题
You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb ...
- [LintCode] Climbing Stairs 爬梯子问题
You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb ...
- Leetcode: climbing stairs
July 28, 2015 Problem statement: You are climbing a stair case. It takes n steps to reach to the top ...
- 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 ...
- Climbing Stairs
Climbing Stairs https://leetcode.com/problems/climbing-stairs/ You are climbing a stair case. It tak ...
- 3月3日(6) Climbing Stairs
原题 Climbing Stairs 求斐波那契数列的第N项,开始想用通项公式求解,其实一个O(n)就搞定了. class Solution { public: int climbStairs(int ...
- leetCode 70.Climbing Stairs (爬楼梯) 解题思路和方法
Climbing Stairs You are climbing a stair case. It takes n steps to reach to the top. Each time you ...
- 【LeetCode练习题】Climbing Stairs
Climbing Stairs You are climbing a stair case. It takes n steps to reach to the top. Each time you c ...
随机推荐
- BS架构与CS架构的区别(最全)
C/S结构,即Client/Server(客户机/服务器)结构,是大家熟知的软件系统体系结构,通过将任务合理分配到Client端和Server端,降低了系统的通讯开销,可以充分利用两端硬件环境的优势. ...
- P1541 乌龟棋
30分做法,暴力枚举: #include <bits/stdc++.h> using namespace std; const int maxn = 400; int n, m; int ...
- php 请求参数限制
公司有个群发短信的小项目,项目上线了很久也没有什么问题,最近有商家说 我短信群发不能用 现象是:发现有时候可以发送,有时候不可以发送,看截图发送的手机数量不一样 通过调试php代码发现 php 只接受 ...
- CC2540 USB DONGLE 使用 BTool 调试BLE 说明
一.Btool软件界面介绍 首先您要将USBDONGLE插入电脑的USB口,然后打开双击打开Btool软件,打开后如下图所示: 在安装驱动的教程中,我们已经记住了我们的USB DONGLE的串口号,在 ...
- 各个JSON技术的比较
JSON技术的调研报告 一 .各个JSON技术的简介和优劣1.json-libjson-lib最开始的也是应用最广泛的json解析工具,json-lib 不好的地方确实是依赖于很多第三方包,包括com ...
- oracle中截取某个字符前面和后面的值
创建测试表及数据 create table test(name varchar2(10)); insert into test values ('2-15');insert into test val ...
- 去除undefined和末尾逗号及把字符串数字转成数字数组的方法
function removeundefined(str){ var v=new Array(),b=""; var tmp=fil(str); for(var i=0;i ...
- imx6 uboot lvds clock
在uboot中添加logo,lvds接口的lcd显示不正常,出现波动.网上说是lvds时钟频率的问题. 使用示波器测量之后,发现频率是60M,而lcd最大频率才46.8M. 因此就需要更改uboot中 ...
- 如何在intellj Idea中给新建的项目添加jar包?
1. 假如我加入joda.jar 2. 找到发布的你想要的jar包,下载! 3. 解压刚下载的jar包,复制 4. 在intellj idea中新建一个java项目,然后创建一个专门用于放jar的li ...
- cat 命令(转)
cat命令的用途是连接文件或标准输入并打印.这个命令常用来显示文件内容,或者将几个文件连接起来显示,或者从标准输入读取内容并显示,它常与重定向符号配合使用. 1.命令格式: cat [选项] [文件] ...