Pascal's Triangle II(帕斯卡三角形)

Given an index k, return the kth row of the Pascal‘s triangle.

For example, given k = 3,
Return [1,3,3,1].

Note:
Could you optimize your algorithm to use only O(k) extra space?

杨辉三角形,西方称为帕斯卡三角形

    杨辉三角

1、每行数字左右对称,由1开始逐渐变大,然后变小,回到1。

2、第n行的数字个数为n个。

3、第n行数字和为2^(n-1)。

4、每个数字等于上一行的左右两个数字之和。可用此性质写出整个帕斯卡三角形。

5、将第2n+1行第1个数,跟第2n+2行第3个数、第2n+3行第5个数……连成一线,这些数的和是第2n个斐波那契数。将第2n行第2个数,跟第2n+1行第4个数、第2n+2行第6个数……这些数之和是第2n-1个斐波那契数。

6、第n行的第1个数为1,第二个数为1×(n-1),第三个数为1×(n-1)×(n-2)/2,第四个数为1×(n-1)×(n-2)/2×(n-3)/3…依此类推。

7.两个未知数和的n次方运算后的各项系数依次为杨辉三角的第n行。

把每一行看做一个矩阵或者向量,则第n行比第n-1行多一个元素,且每一行的第一个元素都等于1,最后一个元素等于上一行的最后一个元素,中间的元素等于上一行的对应下标的前一个加上相同下标的元素和。

C语言版:

int *getRow(int rowIndex) {
    int * a;
    a=(int *)malloc(sizeof(int)*(rowIndex+1));
    a[0]=1;
         for(int i = 1; i <= rowIndex; i++)
             for(int j = i; j >= 0; j--)
                 if (j == i)
                     a[j] = a[j-1];
                 else if (j == 0)
                     a[j] = a[j];
                 else
                     a[j] = a[j-1] + a[j];
         return a;
}

C++版:

class Solution {
public:
    vector<int> getRow(int rowIndex) {
        vector<int> a(rowIndex + 1);

          a[0] = 1;
         for(int i = 1; i <= rowIndex; i++)
             for(int j = i; j >= 0; j--)
                 if (j == i)
                     a[j] = a[j-1];
                else if (j == 0)
                    a[j] = a[j];
                else
                     a[j] = a[j-1] + a[j];

         return a;
    }
};

Pascal's Triangle II(帕斯卡三角形)

时间: 2024-11-05 16:08:35

Pascal's Triangle II(帕斯卡三角形)的相关文章

119 Pascal&#39;s Triangle II 帕斯卡三角形 II Pascal&#39;s Triangle II

给定一个索引 k,返回帕斯卡三角形(杨辉三角)的第 k 行.例如,给定 k = 3,则返回 [1, 3, 3, 1].注:你可以优化你的算法到 O(k) 的空间复杂度吗?详见:https://leetcode.com/problems/pascals-triangle-ii/description/ class Solution { public: vector<int> getRow(int rowIndex) { vector<int> res(rowIndex+1); res

LeetCode:Pascal‘s Triangle II - 帕斯卡三角形2

1.题目名称 Pascal's Triangle II(帕斯卡三角形2) 2.题目地址 https://leetcode.com/problems/pascals-triangle-ii/ 3.题目内容 英文:Given an index k, return the kth row of the Pascal's triangle. 中文:给出行数k,返回帕斯卡三角形的第k行 例如,k=3时,返回[1,3,3,1] 4.解题方法1 帕斯卡三角形也叫杨辉三角形,在LeetCode第118题(Pas

LeetCode 119 Pascal&#39;s Triangle II(帕斯卡三角形II)(vector、数学公式)(*)

翻译 给定一个索引K,返回帕斯卡三角形的第K行. 例如,给定K=3, 返回[1,3,3,1]. 注释: 你可以改进你的算法只用O(k)的额外空间吗? 原文 Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3, Return [1,3,3,1]. Note: Could you optimize your algorithm to use only O(k) extra sp

[leetcode] 2. Pascal&#39;s Triangle II

我是按难度往下刷的,第二道是帕斯卡三角形二.简单易懂,题目如下: Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3, Return [1,3,3,1]. Note: Could you optimize your algorithm to use only O(k) extra space? 就是输入k然后输出第k行帕斯卡三角[其实我一直把它叫杨辉三角]. 我这边思路是拿

C#解leetcode:119. Pascal&#39;s Triangle II

题目是: Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1]. Note:Could you optimize your algorithm to use only O(k) extra space? (注意:这里要求空间为O(k)) 一个满足条件的答案如下: public class Solution { public IList<int

【LeetCode-面试算法经典-Java实现】【118-Pascal&#39;s Triangle(帕斯卡三角形)】

[118-Pascal's Triangle(帕斯卡三角形(杨辉三角))] [LeetCode-面试算法经典-Java实现][所有题目目录索引] 原题 Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5, Return [ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1] ] 题目大意 给定一个正整数n,求n层帕斯卡三角形

125.Pascal&#39;s Triangle II

题目: Given a non-negative index k where k ≤ 33, return the kth index row of the Pascal's triangle. 给定非负索引k,其中k≤33,返回Pascal三角形的第k个索引行. Note that the row index starts from 0. 请注意,行索引从0开始. In Pascal's triangle, each number is the sum of the two numbers d

119. Pascal&#39;s Triangle II

Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1]. Note:Could you optimize your algorithm to use only O(k) extra space? 1 class Solution { 2 public: 3 vector<int> getRow(int rowIndex) { 4 5 vect

Java [Leetcode 119]Pascal&#39;s Triangle II

题目描述: Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1]. 解题思路: 每次在上一个list前面插入1,然后后面的每两个间相加赋值给前一个数. 代码描述: public class Solution { public List<Integer> getRow(int rowIndex) { List<Integer> r