2020--07--17 单次买入卖出股票最大利润

best-time-to-buy-and-sell-stock

http://www.nowcoder.com/questionTerminal/64b4262d4e6d4f6181cd45446a5821ec

题目描述
假设你有一个数组,其中第i个元素是某只股票在第i天的价格。
如果你最多只能完成一笔交易(即买一股和卖一股股票),设计一个算法来求最大利润。

Say you have an array for which the i th 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.
示例1
输入
[1,4,2]
输出
3
这道题的思路是贪心算法
首先用一个greed方法,重新开一个数组来记录:当前第i天的最大利润,即第i天的值减去索引0到i-1的最小值
其次只需要返回新数组的最大值即可

代码实现:

//寻找数组0到index的最大值
    public int max(int[] A,int index){
        int max=A[0];
        for (int i = 1; i <= index; i++) {
            if (A[i]>max)max=A[i];
        }
        return max;
    }
//寻找数组0到index最小值
  public int min(int[] A,int index){
        int min=A[0];
        for (int i = 1; i <= index; i++) {
            if (A[i]<min)min=A[i];
        }
        return min;
    }
//贪心,用新数组profit记录当前最优
    public int greed(int[] A){
        int profit[] = new int[A.length];
        for (int i = 0; i < A.length; i++) {
            profit[i] = A[i]-min(A,i-1)>0? (A[i]-min(A,i-1)):0;
        }
        return max(profit,profit.length-1);//返回profit的最大值
    }
    public int maxProfit (int[] prices) {
        if (prices.length<=0)return 0;//空数组
        else
        return greed(prices);
    }
全部评论

相关推荐

Yushuu:你的确很厉害,但是有一个小问题:谁问你了?我的意思是,谁在意?我告诉你,根本没人问你,在我们之中0人问了你,我把所有问你的人都请来 party 了,到场人数是0个人,誰问你了?WHO ASKED?谁问汝矣?誰があなたに聞きましたか?누가 물어봤어?我爬上了珠穆朗玛峰也没找到谁问你了,我刚刚潜入了世界上最大的射电望远镜也没开到那个问你的人的盒,在找到谁问你之前我连癌症的解药都发明了出来,我开了最大距离渲染也没找到谁问你了我活在这个被辐射蹂躏了多年的破碎世界的坟墓里目睹全球核战争把人类文明毁灭也没见到谁问你了😆
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务