摘要:
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?关于这个问题可以参考http://leonax.net/p/1960/find-circle-in-linked-list/。由于每一个父亲只有可能有一个孩子,故这里的环实际上是指list中某一个节点的孩子同时也是它自己或者他的祖先。 这个问题需要注意几种情况:1. 空链表不成环2. 一个节点自环3. 一条链表完整成环不能开额外的空间,即空间复杂度是o(1)。该问题是经典面试问题, 阅读全文
摘要:
Given an array of integers, every element appearstwiceexcept for one. Find that single one.Note:Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory?感谢cnblog博主feiling,这篇博客一方面参考了feiling的博客,也加入了自己的一些看法。[解题思路]要求线性时间复杂度,同时空间复杂度为O(1),即只允许开常数个空间。最直接的思路是 阅读全文