您的位置:首页 > 其它

CODE 12: Best Time to Buy and Sell Stock

2013-09-15 16:55 375 查看
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.

public int maxProfit(int[] prices) {
// Start typing your Java solution below
// DO NOT write main() function
if (null == prices || prices.length <= 1) {
return 0;
}
int currentMin = prices[0];
int max = 0;
for (int i = 0; i < prices.length; i++) {
if (prices[i] < currentMin) {
currentMin = prices[i];
}
int tmpMax = prices[i] - currentMin;
if (tmpMax > max) {
max = tmpMax;
}
}
return max;
}


 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: