首页 > 其他 > 详细

MaxProfit【看答案了】【★★★★★】

时间:2015-07-25 22:42:23      阅读:163      评论:0      收藏:0      [点我收藏+]
 1         /// <summary>
 2         /// Solution
 3         /// 通过率 100%
 4         /// </summary>
 5         /// <param name="A"></param>
 6         /// <returns></returns>
 7         public int solution(int[] A)
 8         {
 9             if (A.Length <= 1)
10                 return 0;
11             int minPrice = A[0];
12             int maxProfitSofar = 0;
13             for (int i = 1; i < A.Length; i++)
14             {
15                 maxProfitSofar = Math.Max(maxProfitSofar, A[i] - minPrice);
16                 minPrice = Math.Min(minPrice, A[i]);
17             }
18             return maxProfitSofar;
19         }

 

MaxProfit【看答案了】【★★★★★】

原文:http://www.cnblogs.com/HuoAA/p/4676666.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!