Leetcode 109

Posted 村雨sup

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 109相关的知识,希望对你有一定的参考价值。

//这种也是空间复杂度为O(K)的解法,就是边界有点难写
class
Solution { public: vector<int> getRow(int rowIndex) { vector<int> res; res.push_back(1); if(rowIndex == 0) return res; res.push_back(1); if(rowIndex == 1) return res; for(int i=2;i <= rowIndex;i++){ res.push_back(0); int a = res[0]; int b = res[1]; for(int j=1;j < i;j++){ res[j] = a+b; a = b; b = res[j+1]; } res[i] = 1; } return res; } };

 


以上是关于Leetcode 109的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode:Database 109.患某种疾病的患者

leetcode-----109. 有序链表转换二叉搜索树

LeetCode第109题—将有序链表转换为二叉搜索树—Python实现

Leetcode 109

[LeetCode] 109. Convert Sorted List to Binary Search Tree

力扣(LeetCode)数据库SQL最新109题