摘要: Given a string s, partition s such that every substring of the partition is a palindrome Return all possible palindrome partitioning of s. For example 阅读全文
posted @ 2017-06-25 22:15 czcColud 阅读(710) 评论(0) 推荐(0) 编辑
摘要: Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull. Follow up: 思路: 1)同linked-list-cycle-i一题,使用快慢指针方法,判定是否存在 阅读全文
posted @ 2017-06-25 15:44 czcColud 阅读(315) 评论(0) 推荐(0) 编辑