美文网首页
Leetcode-118. 杨辉三角

Leetcode-118. 杨辉三角

作者: G_dalx | 来源:发表于2019-04-23 19:42 被阅读0次

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

    示例:

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

    代码:

    class Solution {
            public List<List<Integer>> generate(int numRows) { 
                List<List<Integer>> ans = new ArrayList<List<Integer>>(); 
                //遍历链表
                for (int i = 0; i < numRows; i++) {
                    List<Integer> list = new ArrayList<Integer>(); 
                    //遍历内部链表,添加元素    
                    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. 杨辉三角

          本文链接:https://www.haomeiwen.com/subject/uwvbgqtx.html