摘要: import java.util.LinkedList;import java.util.List;public class Node { public static void printCommonPart(List<Integer> node1,List<Integer> node2) { Sy 阅读全文
posted @ 2017-10-26 20:30 守夜之人 阅读(170) 评论(0) 推荐(0) 编辑
摘要: public static int lengthOfLongestSubstring(String s) { int max = 0, num = 0; char[] chs =s.toCharArray(); List<Character> temp = new ArrayList<>(); fo 阅读全文
posted @ 2017-10-26 16:12 守夜之人 阅读(298) 评论(0) 推荐(0) 编辑