LeetCode 118. Pascal's Triangle

栏目: 编程工具 · 发布时间: 6年前

内容简介:Given a non-negative integerIn Pascal’s triangle, each number is the sum of the two numbers directly above it.给定一个非负整数
  • 英文

Given a non-negative integer numRows , generate the first numRows of Pascal’s triangle.

In Pascal’s triangle, each number is the sum of the two numbers directly above it.

  • 中文

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

LeetCode 118. Pascal's Triangle

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

示例

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

题解

  • 题解 1

规律:(1)第 i 层有 i 个元素。(2)每层第一个以及最后一个元素值为 1。(3)对于第 i (i > 2) 层第 j(j > 1 && j < i) 个元素 A[i][j] ,A [i][j] = A[i-1][j-1] + A[i-1][j] 。依据以上规律,使用二维数组来实现。

class Solution:
    def generate(self, numRows):
        """
        :type numRows: int
        :rtype: List[List[int]]
        """
        if numRows == 0:
            return []
        else:
            L = [[1]]
        for i in range(1, numRows):
            L1 = []
            for j in range(i+1):
                if j == 0 or j == i:	# 处理每层第一个以及最后一个元素
                    L1.append(1)
                else:	# 中间元素由+得到
                    L1.append(L[i-1][j] + L[i-1][j-1])
                    
            L.append(L1)   
        return L
  • 题解 2

思路与题解 1 一样,简化的写法。

class Solution:
    def generate(self, numRows):
        """
        :type numRows: int
        :rtype: List[List[int]]
        """
        res = []
        for i in range(numRows):
            res.append([1])
            for j in range(1, i + 1):
                if j == i:
                    res[i].append(1)
                else:
                    res[i].append(res[i - 1][j - 1] + res[i - 1][j])
        return res

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

电脑报(上下册)

电脑报(上下册)

电脑报社 / 西南师范大学出版社 / 2006-12-01 / 45.00元

全套上、下两册,浓缩2006年电脑报精华文章。附录包含70余篇简明IT应用指南,覆盖软件、硬盘、数码、网络四大领域。配赠权威实用的2006-2007中国计算机年鉴DVD光盘,近1.4GB海量信息与资源超值奉献。8大正版超值软件,涵盖系统维护、系统安全、办公应用、多媒体娱乐等四大领域。微软、腾讯、友立等知名厂商,新年献礼。提供2006-2007全系列硬件、数码产品资讯,兼具知识性与资料性。官方网站全......一起来看看 《电脑报(上下册)》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具