摘要: package alg; /** * 求取最大的子数列 * */ public class SubMaxArray { public static void main(String[] args) { int[] a = new int[] { 1, -2, 3, 10, -4, 7, 2, -5 }; int[] b = new int[] ... 阅读全文
posted @ 2014-11-29 23:31 长天秋水落霞孤鹜 阅读(145) 评论(0) 推荐(0)