码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode: Pascal's Triangle II 解题报告

时间:2014-12-31 00:54:24      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:

Pascal‘s Triangle II

Total Accepted: 19384 Total Submissions: 63446 My Submissions Question Solution
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?

解:
题目里要求O(k),与上一题 杨辉三角 类似,但是我们稍微改一下,只需要存上一行的结果就行了。
这样就不需要消耗太多内存。

更厉害的是:Inplace也可以,只要你每次从后往前扫描就行了。一个array也能搞定:

技术分享
 1 public class Solution {
 2     public List<Integer> getRow(int rowIndex) {
 3         List<Integer> ret = new ArrayList<Integer>();
 4         
 5         for (int i = 0; i <= rowIndex; i++) {
 6             for (int j = i; j >= 0; j--) {
 7                 if (j == i) {
 8                     ret.add(1);
 9                 } else if (j != 0) {
10                     // ERROR: use add instead of set
11                     //ret.add(ret.get(j) + ret.get(j - 1));
12                     ret.set(j, ret.get(j) + ret.get(j - 1));
13                 }
14             } 
15         }
16         
17         return ret;
18     }
19 }
View Code


GitHub代码链接

LeetCode: Pascal's Triangle II 解题报告

标签:

原文地址:http://www.cnblogs.com/yuzhangcmu/p/4194823.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!