摘要:
上代码: public ListNode addTwoNumbers(ListNode l1, ListNode l2) { ListNode head = new ListNode(); ListNode ln = head; ListNode ln1 = l1; ListNode ln2 = l 阅读全文
摘要:
上代码: 方法一(HashMap集合实现): public static int get(String s) { // 判断字符串是否为空 if(s.length() == 0){ return 0; } // 定义left指针 int left= 0; // 定义最大容量 int max = 0; 阅读全文