由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - one fresh interview question for sharing
相关主题
MS a0, a1, ..., b0, b1... 问题请教一个DP的问题
Google面试回来one amazon interview problem
大家看看这道逻辑题怎么做?问几道面试题
leetcode能不能多加点DP的题啊F家 一道LIS 的变种
climbing stairs那道题关于wildcard match和regex match的一个问题
面经 + 总结一刀题
Docode 问题G家电面
微软面经G家面试题: Longest Increasing Sequence 2D matrix
相关话题的讨论汇总
话题: question话题: output话题: input话题: sharing话题: fresh
进入JobHunting版参与讨论
1 (共1页)
i****5
发帖数: 6
1
/*
Stairs = {0..n}
At each stair step size of 1 or 2.
input: n
output: All possible sequences from 0 to n.
e.g. For input n = 3
output
0 1 2 3 <- 1 1 1
0 1 3 <- 1 2
0 2 3 <- 2 1
*/
I tried to use stack and recursion to solve this problem. Is there any
other solution?
p*****2
发帖数: 21240
2

DP也可以。

【在 i****5 的大作中提到】
: /*
: Stairs = {0..n}
: At each stair step size of 1 or 2.
: input: n
: output: All possible sequences from 0 to n.
: e.g. For input n = 3
: output
: 0 1 2 3 <- 1 1 1
: 0 1 3 <- 1 2
: 0 2 3 <- 2 1

s***y
发帖数: 3042
3
DP

【在 i****5 的大作中提到】
: /*
: Stairs = {0..n}
: At each stair step size of 1 or 2.
: input: n
: output: All possible sequences from 0 to n.
: e.g. For input n = 3
: output
: 0 1 2 3 <- 1 1 1
: 0 1 3 <- 1 2
: 0 2 3 <- 2 1

W***n
发帖数: 11530
4

This is a stupid question as well. Avoid this company.

【在 i****5 的大作中提到】
: /*
: Stairs = {0..n}
: At each stair step size of 1 or 2.
: input: n
: output: All possible sequences from 0 to n.
: e.g. For input n = 3
: output
: 0 1 2 3 <- 1 1 1
: 0 1 3 <- 1 2
: 0 2 3 <- 2 1

1 (共1页)
进入JobHunting版参与讨论
相关主题
G家面试题: Longest Increasing Sequence 2D matrixclimbing stairs那道题
问一道面经题面经 + 总结
求推荐学习recursive 算法的资料Docode 问题
求教一个combination的问题,求好方法微软面经
MS a0, a1, ..., b0, b1... 问题请教一个DP的问题
Google面试回来one amazon interview problem
大家看看这道逻辑题怎么做?问几道面试题
leetcode能不能多加点DP的题啊F家 一道LIS 的变种
相关话题的讨论汇总
话题: question话题: output话题: input话题: sharing话题: fresh