给你单链表的头节点 head
,请你反转链表,并返回反转后的链表。
输入:head = [1,2,3,4,5]
输出:[5,4,3,2,1]
输入:head = [1,2]
输出:[2,1]
输入:head = [ ]
输出:[ ]
[0,500]
-5000 <= Node.val <= 5000
判断链表是否为空,如果为空直接返回头结点
判断链表是否为一个元素,如果是直接返回头结点
将head
置为null
定义两个指针,cur
和curNext
,cur
指向头结点的next
,表示要反转的元素;curNext
指向cur
的next
,表示要反转元素的下一个元素
使用头插法将要反转的元素插入前一个元素的前面
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public ListNode reverseList(ListNode head) {
if (head == null) { // 链表里一个元素都没有
return head;
}
if (head.next == null) { // 链表里只有一个元素
return head;
}
ListNode cur = head.next; // 要反转的元素
head.next = null;
while (cur != null) {
ListNode curNext = cur.next;
// 头插法
cur.next = head;
head = cur;
cur = curNext;
}
return head;
}
}
运行结果:
给你单链表的头结点 head
,请你找出并返回链表的中间结点。
如果有两个中间结点,则返回第二个中间结点。
输入:head = [1,2,3,4,5]
输出:[3,4,5]
解释:链表只有一个中间节点,值为3
输入:head = [1,2,3,4,5,6]
输出:[4,5,6]
解释:链表只有两个中间节点,值分别为3和4,返回第二个节点。
[1,100]
1<= Node.val <= 100
next
是否为空,如果是直接返回头结点slow
和fast
,都指向头结点。fast
指向fast
的next
的next
(每次移动两步);slow
指向slow
的next
(每次移动1步)fast == null
循环结束(链表元素个数为偶数时),fast.next == null
循环结束(链表元素个数为奇数时)。/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public ListNode middleNode(ListNode head) {
if (head.next == null) {
return head;
}
ListNode slow = head;
ListNode fast = head;
while (fast != null && fast.next != null) {
fast = fast.next.next;
slow = slow.next;
}
return slow;
}
}
运行结果:
输入一个链表,输出该链表中倒数第k个结点。
输入:1,{1,2,3,4,5}
返回值:{5}
k
是否合法,如果不合法直接返回null
。null
。fast
和slow
都是指向头结点。fast
先走k-1
步。fast
和slow
同时走,当fast.next == null
都走到了链表最后一个节点了,同时slow
也走到了倒数第K个节点import java.util.*;
/*
public class ListNode {
int val;
ListNode next = null;
ListNode(int val) {
this.val = val;
}
}*/
public class Solution {
public ListNode FindKthToTail(ListNode head, int k) {
if (k < 0) { // k为负数
return null;
}
if (head == null){
return null;
}
ListNode fast = head;
ListNode slow = head;
int count = 0;
while (count != (k - 1)) {
if (fast.next != null) {
fast = fast.next;
count++;
} else { // k 大于链表长度
return null;
}
}
while (fast.next != null) {
fast = fast.next;
slow = slow.next;
}
return slow;
}
}
运行结果:
将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
输入:l1 = [1,2,4] ,l2 = [1,3,4]
输出:[1,1,2,3,4,4]
输入:l1 = [] ,l2 = []
输出:[]
输入:l1 = [] ,l2 = [0]
输出:[0]
newHead
为虚拟节点newHead
就指向谁,头结点就指向头结点的next
newHead
指向头结点的next
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
ListNode newHead = new ListNode(-1);
ListNode temp = newHead;
while(list1 != null && list2 != null) {
if (list1.val < list2.val) {
temp.next = list1;
list1 = list1.next;
temp = temp.next;
} else {
temp.next = list2;
list2 = list2.next;
temp = temp.next;
}
}
if (list1 != null) {
temp.next = list1;
}
if (list2 != null) {
temp.next = list2;
}
return newHead.next;
}
}
运行结果: