LeetCode 119. Pascal’s Triangle II
Description:
Given an index k, return the kth row of the Pascal’s triangle.
分析:
可以在118题修改一下,返回res[rowIndex]即可。具体可以看看我的这篇文章http://blog.csdn.net/sinat_31790817/article/details/78806130
看了LeetCode上面的一个Discuss,代码我也粘贴出来的,注释里another version那个就是。很神奇的代码,先初始化rowIndex+1的vector为0,从后面开始往前计算,可以得到结果。
代码如下:
1 |
|
1 | // another version |