明白了上一题是求最大的连续子数组之和后,这题就更加简单了,遇到小于0的就不要加。
public class Solution {
public int maxProfit(int[] prices) {
if(prices.length < 2)
return 0;
int n = prices.length;
...
分类:
其他好文 时间:
2014-10-19 00:05:52
阅读次数:
194
Say you have an array for which theithelement is the price of a given stock on dayi.If you were only permitted to complete at most one transaction (ie...
分类:
其他好文 时间:
2014-10-18 22:14:23
阅读次数:
151
题目描述:Say you have an array for which theithelement is the price of a given stock on dayi.If you were only permitted to complete at most one transactio...
分类:
其他好文 时间:
2014-10-17 02:09:43
阅读次数:
293
Say you have an array for which the ith element is the price of a given stock on day i.Design an algorithm to find the maximum profit. You may complet...
分类:
其他好文 时间:
2014-10-16 21:34:53
阅读次数:
240
Say you have an array for which theithelement is the price of a given stock on dayi.Design an algorithm to find the maximum profit. You may complete a...
分类:
其他好文 时间:
2014-10-16 15:45:42
阅读次数:
189
Say you have an array for which theithelement is the price of a given stock on dayi.Design an algorithm to find the maximum profit. You may complete a...
分类:
其他好文 时间:
2014-10-16 15:26:02
阅读次数:
169
/*Comparison sort * |---------------------|-----|----------------|---------------|------|----------| | Name |Best | Av...
分类:
其他好文 时间:
2014-10-16 15:17:12
阅读次数:
141
Say you have an array for which theithelement is the price of a given stock on dayi.If you were only permitted to complete at most one transaction (ie...
分类:
其他好文 时间:
2014-10-16 09:30:02
阅读次数:
193
width and/or height in tables are not standard anymore; as Ianzz says, they are depreciated. Instead the best way to do this is to have a block elemen...
分类:
Web程序 时间:
2014-10-15 15:23:10
阅读次数:
341
1.选择你喜欢的字体,下载字体文件字体参考:http://www.creativebloq.com/graphic-design-tips/best-free-fonts-for-designers-12333802.项目assets文件中新建font文件夹,将你的字体文件放在该文件夹中3.项目代码...
分类:
移动开发 时间:
2014-10-15 05:04:09
阅读次数:
250