121.买股票的最佳时期
作者:互联网
思路
1.暴力法
代码
class Solution {
public:
int maxProfit(vector<int>& prices)
{
int i,j,w=0;
for(i=0;i<prices.size()-1;i++)
for(j=i+1;j<prices.size();j++)
w=(prices[j]-prices[i])>w?(prices[j]-prices[i]):w;
return w;
}
};
weixin_45803830
发布了2 篇原创文章 · 获赞 0 · 访问量 39
私信
关注
标签:私信,int,股票,iw,121,最佳时期,文章,prices 来源: https://blog.csdn.net/weixin_45803830/article/details/104599500