摘要:
Given a list, rotate the list to the right by k places, where k is non-negative. For example: Given 1->2->3->4->5->NULL and k = 2, return 4->5->1->2->3->NULL. 解题思路: 双指针(tail,pre)找到链表... 阅读全文
摘要:
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.You should preserve the o... 阅读全文
摘要:
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.For example, Given 1->2... 阅读全文
摘要:
Problem:Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?https://oj.leetcode.com/problems/l... 阅读全文
摘要:
先前初学了《大话数据结构》,然后在网上看到了LeetCode的测试,于是开始刷题,第一题就是排行榜首位Given an array of integers, find two numbers such that they add up to a specific target number.The... 阅读全文