Linked List
QihaoD
留个言吧,会很开心的,哈哈
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
[leetCode] Intersection of Two Linked Lists
Write a program to find the node at which the intersection of two singly linked lists begins. For example, the following two linked lists: A: a1 → a2 ↘原创 2014-12-09 01:48:40 · 355 阅读 · 0 评论 -
[leetCode] Palindrome Linked List
Given a singly linked list, determine if it is a palindrome. Follow up: Could you do it in O(n) time and O(1) space? public class Solution { ListNode h; public boolean isPalindrome(ListNo原创 2015-08-19 00:56:40 · 376 阅读 · 0 评论
分享