写点什么

ARTS Week 1

用户头像
黑色柳丁
关注
发布于: 2020 年 06 月 08 日
ARTS Week 1

Algorithm



70 Climbing Stairs

You are climbing a stair case. It takes n steps to reach to the top.

Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?

Note: Given n will be a positive integer.



class Solution {
public:
int climbStairs(int n) {
int dp[n+1];
dp[0]=1;
dp[1]=1;
for(int i=2;i<=n;i++) {
dp[i]=dp[i-1]+dp[i-2];
}
int res = dp[n];
return res;
}
};



用了动态规划解答该题(O=n S=n)。但看了解题后才发现并不是最好的解法。 这个题目其实就是斐波那契数列,所以存在S=1 和公式直接推导的做法。在下周计划围绕斐波那契找一些文章学习下。



Review



一篇对Merging音频网络设备的介绍

https://www.merging.com/products/pyramix/ravenna



Tips



这周捣鼓了一块全志开发板(OrangePi zero. 最吃惊的是价格便宜到令人发指)

linux: 编译ko驱动模块时提示缺少/lib/module/#kernel_version/build 实际上是缺少了内核头文件,所以需要下载linux-hearder-#kernel_version 这个包

但是这个板子比较小众,我又需要不能太新的内核,所以暂时没找到,考虑更换最新内核或者自己编译



Share



《Dante, AES67, SMPTE ST 2110之间的关系》

https://www.imaschina.com/article/55046.html



发布于: 2020 年 06 月 08 日阅读数: 56
用户头像

黑色柳丁

关注

还未添加个人签名 2018.04.11 加入

还未添加个人简介

评论

发布
暂无评论
ARTS Week 1