leetcode--Best Time to Buy and Sell Stock

来源:互联网 发布:linux rpm怎么安装 编辑:程序博客网 时间:2024/05/22 10:32

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

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 class Solution {    public int maxProfit(int[] prices) {       int max = 0;       if(prices.length==0) return max;       int min = prices[0];       for(int i=1;i<prices.length;i++){       if(prices[i]>min){       if(prices[i]-min>max){       max = prices[i]-min;       }       }else{       min = prices[i];       }       }       return max;    }}


0 0
原创粉丝点击