Java [Leetcode 119]Pascal's Triangle II
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java [Leetcode 119]Pascal's Triangle II相关的知识,希望对你有一定的参考价值。
题目描述:
Given an index k, return the kth row of the Pascal‘s triangle.
For example, given k = 3,
Return [1,3,3,1]
.
解题思路:
每次在上一个list前面插入1,然后后面的每两个间相加赋值给前一个数。
代码描述:
public class Solution { public List<Integer> getRow(int rowIndex) { List<Integer> result = new ArrayList<Integer>(); for(int i = 0; i <= rowIndex; i++){ result.add(0,1); for(int j = 1; j < i; j++){ result.set(j, result.get(j) + result.get(j + 1)); } } return result; } }
以上是关于Java [Leetcode 119]Pascal's Triangle II的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode_119. Pascal's Triangle II
LeetCode OJ 119. Pascal's Triangle II
C#解leetcode:119. Pascal's Triangle II
leetcode 119. Pascal's Triangle II