程序媛詹妮弗
终身学习
摘要: Q: 在扫整个链表的时候,到底什么时候用 while(cur!=null) 什么时候用 while(cur.next!=null) 呢? 以[leetcode]83. Remove Duplicates from Sorted List有序链表去重(有重去重)和[leetcode]82. Remov 阅读全文
posted @ 2019-06-01 03:23 程序媛詹妮弗 阅读(257) 评论(0) 推荐(0) 编辑
摘要: Given a string containing only digits, restore it by returning all possible valid IP address combinations. Example: 题意 给定一个没加点的IP地址,返回所有可能的合法IP地址。 思路: 阅读全文
posted @ 2019-06-01 03:18 程序媛詹妮弗 阅读(170) 评论(0) 推荐(0) 编辑