LeetCode题组:第121题-买卖股票的最佳时机
生活随笔
收集整理的這篇文章主要介紹了
LeetCode题组:第121题-买卖股票的最佳时机
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1.題目
給定一個數組,它的第 i 個元素是一支給定股票第 i 天的價格。
如果你最多只允許完成一筆交易(即買入和賣出一支股票一次),設計一個算法來計算你所能獲取的最大利潤。
注意:你不能在買入股票前賣出股票。
示例 1:
輸入: [7,1,5,3,6,4]
輸出: 5
解釋: 在第 2 天(股票價格 = 1)的時候買入,在第 5 天(股票價格 = 6)的時候賣出,最大利潤 = 6-1 = 5 。注意利潤不能是 7-1 = 6, 因為賣出價格需要大于買入價格。
示例 2:
輸入: [7,6,4,3,1]
輸出: 0
解釋: 在這種情況下, 沒有交易完成, 所以最大利潤為 0。
2.我的解答(簡單粗暴方法版)
沒有什么是兩個for循環不能解決的。
int maxProfit(int* prices, int pricesSize){//標記最大利潤int MaxProfit=0;int Profit=0;for(int i=0; i<pricesSize; i++){for(int j=i+1; j<pricesSize ;j++){Profit = prices[j]-prices[i];if(Profit>MaxProfit) MaxProfit=Profit;}}return MaxProfit; }最佳解答
這是一個讓人掉頭發的解決方案。
int maxProfit(int* prices, int pricesSize){int MaxProfit=0,minprice=10000;for(int i=0;i<pricesSize;i++){if(minprice>prices[i])minprice=prices[i];else if(MaxProfit<prices[i]-minprice){MaxProfit=prices[i]-minprice;}}return MaxProfit; }總結
以上是生活随笔為你收集整理的LeetCode题组:第121题-买卖股票的最佳时机的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: LeetCode题组:第26题-删除排序
- 下一篇: LeetCode题组:第169题-多数元