Best Time to Buy and Sell StockSay you have an array for which theithelement is the price of a given stock on dayi.If you were only permitted to compl...
分类:
其他好文 时间:
2014-10-22 21:54:00
阅读次数:
192
var conf = {container: 'container',//播放器容器ID,必要参数demo: 'demo',//控制台开通的APP,必要参数stock: 'stock'//应用层控制,可以随意设置,必要参数/* 以下为可选参数width: width,//视频宽度,可用数字、百分.....
分类:
其他好文 时间:
2014-10-22 12:45:11
阅读次数:
397
课程要求在Myeclipse上做各种实验,当把各种插件安好以后,突然Myeclipse提示使用到期,你可知道按那些个插件收了多少挫折么,怎能刚安好就用不了,但是又不想buy,所以就上网找破解咯,其中发现这个教程http://jingyan.baidu.com/article/7082dc1c57eb19e40a89bdcd.html
写的不错,跟着安就行;
工具:
但是他提供的工具就有点坑了...
分类:
系统相关 时间:
2014-10-19 23:21:26
阅读次数:
233
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-19 22:35:19
阅读次数:
165
知道是求连续最大子数组后就简单了。但是注意边界条件,如果最大子数组之和<0,那就不要交易了, 返回0.
public class Solution {
public int maxProfit(int[] prices) {
if(prices.length < 2)
return 0;
int n = prices....
分类:
其他好文 时间:
2014-10-19 00:06:49
阅读次数:
146
明白了上一题是求最大的连续子数组之和后,这题就更加简单了,遇到小于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