Leetcode-118. 杨辉三角

给定一个非负整数 numRows,生成杨辉三角的前 numRows 行。

示例:

输入: 5
输出:
[
     [1],
    [1,1],
   [1,2,1],
  [1,3,3,1],
 [1,4,6,4,1]
]

代码:

class Solution {
        public List> generate(int numRows) { 
            List> ans = new ArrayList>(); 
            //遍历链表
            for (int i = 0; i < numRows; i++) {
                List list = new ArrayList(); 
                //遍历内部链表,添加元素    
                for (int j = 0; j <= i; j++) { 
                //每一列的开头和结尾元素为1,开头的时候,j=0,结尾的时候,j=i
                    if (j == 0 || j == i ) {
                        list.add(1); 
                    } else  {//每一个元素是它上一行的元素和斜对角元素之和
                        list.add(ans.get(i - 1).get(j) + ans.get(i - 1).get(j - 1)); 
                    }
                } 
                ans.add(list); 
            } 
        
        return ans; 
        } 
    }

你可能感兴趣的:(Leetcode-118. 杨辉三角)