博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Pascal's Triangle II
阅读量:6418 次
发布时间:2019-06-23

本文共 864 字,大约阅读时间需要 2 分钟。

1.题目描述

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?

2.解法分析

题目说要优化空间需求,实际上就是要复用空间,于是写出的代码如下:

class Solution {
public:
vector
getRow(int rowIndex) {
// Start typing your C/C++ solution below
// DO NOT write int main() function\
//areslipan
vector
curRow;
curRow.push_back(1);
if(rowIndex == 0)return curRow;
curRow.push_back(1);
if(rowIndex == 1)return curRow;
 
vector
result;
result.assign(rowIndex+1,1);
 
int cur;
int nextCur;
for(int i = 2;i<=rowIndex;++i)
{
cur = result[0];
for(int j =1;j
{
nextCur = result[j];
result[j]=cur+result[j];
cur = nextCur;
}
}
 
return result;
 
 
}
};

转载于:https://www.cnblogs.com/obama/p/3251243.html

你可能感兴趣的文章
topcoder srm 680 div1 -3
查看>>
高效前端优化工具--Fiddler入门教程
查看>>
【翻译】我钟爱的HTML5和CSS3在线工具
查看>>
Java多线程学习(吐血超详细总结)
查看>>
css3 变形
查看>>
Win7 64bit 安装Mysql5 出错 无法启动服务。
查看>>
嵌入式 H264参数语法文档: SPS、PPS、IDR以及NALU编码规律
查看>>
初识Opserver,StackExchange的监控解决方案
查看>>
给大家讲解一下JavaScript与后台Java天衣无缝相结合
查看>>
探索HTML5之本地文件系统API - File System API
查看>>
redis源码笔记 - initServer
查看>>
FindBugs工具常见问题
查看>>
ECSHOP报错误Deprecated: preg_replace(): The /e modifier is depr
查看>>
【iOS】iOS之Button segue弹出popOver消除(dismiss)问题
查看>>
java多线程系列5-死锁与线程间通信
查看>>
数据库分库分表
查看>>
小程序模板嵌套以及相关遍历数据绑定
查看>>
Systemd入门教程:命令篇(转)
查看>>
spring事务学习(转账案例)(二)
查看>>
[官方教程] [ES4封装教程]1.使用 VMware Player 创建适合封装的虚拟机
查看>>