Pescal Triangle Two
Posted whatyouknow123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pescal Triangle Two相关的知识,希望对你有一定的参考价值。
Description:
Given an index k, return the kth row of the Pascal‘s triangle.
For example, given k = 3,
Return [1,3,3,1]
.
Note:
Could you optimize your algorithm to use only O(k) extra space?
Thoughts:
我们从前一个例子Pascal triangle的第二种方法可以得到启发;只需要去掉外面用来保存每一行List值的ArrayList即可。不过要注意的一个问题就是Pascal triangle中的rownums会比Pascal triangle two中的rowIndex多1,所以有以下的java代码:
class Solution { public List<Integer> getRow(int rowIndex) { List<Integer> result = new ArrayList<Integer>(); rowIndex++; for(int i=0;i<rowIndex;i++){ result.add(0, 1); for(int j = 1;j<result.size()-1;j++){ result.set(j, result.get(j)+result.get(j+1)); } } return result; } }
以上是关于Pescal Triangle Two的主要内容,如果未能解决你的问题,请参考以下文章
Triangle 1.6 (A Two-Dimensional Quality Mesh Generator and Delaunay Triangulator)
CodechefA Triangle and Two Squares-Problem Code: SQRTRI