摘要: 1 import java.util.ArrayList; 2 import java.util.List; 3 4 public class MaxSubSeq { 5 // 例如给定序列{ -2, 11, -4, 13, -5, -2 },其最大连续子序列为{ 11, -4, 13 },最大和为20。 6 // 状态转移方程: sum[i]=max(sum[i-1]... 阅读全文
posted @ 2017-12-19 16:43 金色元年 阅读(349) 评论(0) 推荐(0) 编辑
摘要: 1 const moment = require( 'moment' ); 2 3 const begin_date = '2017-12-12', 4 end_date = '2018-01-19', 5 arr = getAllDays( begin_date, end_date ); 6 7 console.log( 'arr: ', arr ); 8 ... 阅读全文
posted @ 2017-12-19 00:16 金色元年 阅读(819) 评论(0) 推荐(0) 编辑