美文网首页
杨辉三角

杨辉三角

作者: YocnZhao | 来源:发表于2019-03-07 18:28 被阅读0次

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

杨辉三角示意图

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

示例:

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

思路:每个数都是上一个list的currentIndex-1和currentIndex的和。如果currentIndex-1或者currentIndex在上一个list不存在就置为0。

public class PascalTriangle {
    public void test() {
        List<List<Integer>> list = generate(11);
        LogUtil.Companion.d("list->" + list.toString());
    }

    public List<List<Integer>> generate(int numRows) {
        List<List<Integer>> result = new ArrayList<>();
        if (numRows == 0) {
            return result;
        }
        int num = 0;

        for (int i = 0; i < numRows; i++) {
            num++;
            List<Integer> list = new ArrayList<>();
            if (i == 0) {
                list.add(1);
                result.add(list);
                continue;
            } else if (i == 1) {
                list.add(1);
                list.add(1);
                result.add(list);
                continue;
            }

            List<Integer> lastList = result.get(result.size() - 1);
            for (int j = 0; j < num; j++) {
                int pre = (j - 1 >= 0) ? lastList.get(j - 1) : 0;
                int current = (j < lastList.size()) ? lastList.get(j) : 0;
                list.add(pre + current);
            }
            result.add(list);
            LogUtil.Companion.d("i->" + i + " lastList->" + lastList.toString());
        }
        return result;
    }
}

LeetCode直达链接

获取杨辉三角某一行~

public List<Integer> getRow(int rowIndex) {
        List<Integer> list = new ArrayList<>();
        int num = 0;
        List<Integer> preList = new ArrayList<>();
        for (int i = 0; i < rowIndex + 1; i++) {
            num++;
            list.clear();
            if (i == 0) {
                list.add(1);
                preList = new ArrayList<>(list);
                LogUtil.Companion.d(" 0  lastList->" + preList.toString());
                continue;
            } else if (i == 1) {
                list.add(1);
                list.add(1);
                preList = new ArrayList<>(list);
                LogUtil.Companion.d(" 1  lastList->" + preList.toString());
                continue;
            }
            for (int j = 0; j < num; j++) {
                int pre = (j - 1 >= 0) ? preList.get(j - 1) : 0;
                int current = (j < preList.size()) ? preList.get(j) : 0;
                list.add(pre + current);
                LogUtil.Companion.d("pre->" + pre + " current->" + current + " total->" + (pre + current));
            }
            preList = new ArrayList<>(list);
            LogUtil.Companion.d("i->" + i + " lastList->" + preList.toString());
        }
        return list;
    }

杨辉三角II LeetCode直达

相关文章

  • 打印杨辉三角形

    杨辉三角形Java实现打印杨辉三角形,代码如下:

  • 杨辉三角

    杨辉三角

  • 2019-04-02

    杨辉三角

  • 杨辉三角的几种解法(python)

    1. 计算杨辉三角,普通法 2. 计算杨辉三角 补0法 3. 杨辉三角,对称法 中点的确定:[1][1,1][1,...

  • pascals-triangle-ii

    杨辉三角 II 给定一个非负索引 k,其中 k ≤ 33,返回杨辉三角的第 k 行。 在杨辉三角中,每个数是它左上...

  • C语言 | 杨辉三角形

    C语言 | 杨辉三角形 在屏幕上显示杨辉三角形: 问题分析与算法设计 杨辉三角问题,正是(x + y)的N次方...

  • 队列杨辉三角

    杨辉三角 杨辉三角的特点是,两腰都是1,中间的数=上面两个数之和。 使用队列思想实现杨辉三角的流程 首先,需要初始...

  • 二维数组

    二维数组树出杨辉三角:打印杨辉三角形(行数可以键盘录入)

  • Java二维数组

    二维数组树出杨辉三角:打印杨辉三角形(行数可以键盘录入)

  • 118. 杨辉三角

    【Description】给定一个非负整数 numRows,生成杨辉三角的前 numRows 行。 在杨辉三角中,...

网友评论

      本文标题:杨辉三角

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