力扣 118. 杨辉三角

该题转自力扣 链接:https://leetcode-cn.com/problems/pascals-triangle

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

在「杨辉三角」中,每个数是它左上方和右上方的数的和。

力扣 118. 杨辉三角

 

示例 1:

输入: numRows = 5
输出: [[1],[1,1],[1,2,1],[1,3,3,1],[1,4,6,4,1]]
示例 2:

输入: numRows = 1
输出: [[1]]
 

提示:

1 <= numRows <= 30

  class Solution {
        public List<List<Integer>> generate(int numRows) {
            List<List<Integer>> ret = new ArrayList<List<Integer>>();//定义二维链表
            for (int i = 0; i < numRows; i++) {//遍历列
                List<Integer> row = new ArrayList<Integer>();
                for (int j = 0; j <= i; j++) {//遍历行
                    if (j == 0 || j == i) {//看规律 第一行和第一列都是1 
                        row.add(1);
                    } else {//如果不是第一行就等于上一行的元素与上一行前一个元素想加
                        row.add(ret.get(i-1).get(j)+ret.get(i-1).get(j-1));
                    }
                }
                ret.add(row);//把每一行的数据加入到ret中去
            } 
            return ret;//返回ret
        }
    }

上一篇:D1net阅闻:中国移动将于12月推出企业飞信


下一篇:Educational Codeforces Round 118 A-E