博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[leetcode]Best Time to Buy and Sell Stock
阅读量:6647 次
发布时间:2019-06-25

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

 

#include 
#include
#include
using namespace std;//简单的DP算法class Solution {public: int maxProfit(vector
&prices) { // Start typing your C/C++ solution below // DO NOT write int main() function int size = prices.size(); if (!size) return 0; vector
min(size); min[0] = prices[0]; for (int i = 1; i < size; i++){ min[i] = std::min(min[i-1], prices[i]); } int max = 0; for (int i = 1; i < size; i++){ max = std::max(max, prices[i] - min[i]); } return max; }};int main(){ return 0;}

 

 

 

 

 

EOF

转载地址:http://rbuto.baihongyu.com/

你可能感兴趣的文章
添物不花钱学计算机及编程(预备篇) - 软件工程
查看>>
带状态论文粗读(三)[引用openstate的相关论文阅读]
查看>>
pcDuino无显示器刷机与使用
查看>>
程序员出路在何方
查看>>
linux-alias基本用法
查看>>
compose函数
查看>>
Professional C# 6 and .NET Core 1.0 - Chapter 39 Windows Services
查看>>
C# 6 与 .NET Core 1.0 高级编程 - 40 ASP.NET Core(上)
查看>>
(已解决)Xcode 运行cocos2dx弹出内部错误对话框(Internal Error)
查看>>
J2EE 13规范(2)-JNDI
查看>>
模板维护-模板测试
查看>>
django -- 对模式进行调式(pay with the api)
查看>>
SQL Server sp_configure 控制内存使用
查看>>
通读《构建之法》提出问题
查看>>
VB生成xml
查看>>
左值、左值引用、右值、右值引用
查看>>
中转注入
查看>>
ACM 算法目录
查看>>
android 读取SD卡文件
查看>>
Flatten Binary Tree to Linked List
查看>>