1 Star 0 Fork 0

丁旭升/cpp代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
动归题.txt 746 Bytes
一键复制 编辑 原始数据 按行查看 历史
丁旭升 提交于 2022-10-04 10:04 . 算法题第2天
https://www.nowcoder.com/practice/8c82a5b80378478f9484d87d1c5f12a4?
class Solution {
public:
int jumpFloor(int number) {
int* dp = new int[number+1];
dp[1]=1;
dp[2]=2;
for(int i=3; i<=number; i++)
{
dp[i]=dp[i-1]+dp[i-2];
}
int rnum=dp[number];
delete[] dp;
return rnum;
}
};
https://www.nowcoder.com/practice/72a5a919508a4251859fb2cfb987a0e6?
class Solution {
public:
int rectCover(int number) {
int* dp = new int[number+1];
dp[1]=1;
dp[2]=2;
for(int i=3; i<=number; i++)
{
dp[i]=dp[i-1]+dp[i-2];
}
int rnum=dp[number];
delete[] dp;
return rnum;
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ding-xushengyun/code.git
[email protected]:ding-xushengyun/code.git
ding-xushengyun
code
cpp代码
master

搜索帮助