leetcode 121. Best Time to Buy and Sell Stock

来源:互联网 发布:低空飞行淘宝 编辑:程序博客网 时间:2024/05/17 22:56

Say you have an array for which the ith element is the price of a given stock on day i.

If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), design an algorithm to find the maximum profit.



int maxProfit(int* prices, int pricesSize) {if (prices == NULL)return 0;if (pricesSize < 2)return 0;int max = 0;int k = 0;while (k + 1 < pricesSize){while (k + 1 < pricesSize&&prices[k] > prices[k + 1])k++;int kk = k;while (kk + 1 < pricesSize&&prices[kk + 1] >= prices[k]){if (prices[kk + 1] - prices[k] > max)max = prices[kk + 1] - prices[k];kk++;}k = kk;}return max;}

accepted


0 0
原创粉丝点击