【力扣】链表题目

简介: 【力扣】链表题目

一、移除链表元素



class Solution {
    public ListNode removeElements(ListNode head, int val) {
         if(head==null)
        return null;
        ListNode pre=head;
        ListNode cur=head.next;
        while(cur!=null){
            if(cur.val==val){
                pre.next=cur.next;
                cur=cur.next;
            }
            else{
                pre=cur;;
                cur=cur.next;
            }
        }
        if(head.val==val){
            head=head.next;
        }
            return head;
    }
}


二、反转链表



class Solution {
    public ListNode reverseList(ListNode head) {
        if(head==null)
        return null;
ListNode cur=head.next;
head.next=null;
while(cur!=null){
ListNode CUR=cur.next;
cur.next=head;
head=cur;
cur=CUR;
}
return head;
    }
}


三、找链表中间节点(一次循环)


class Solution {
    public ListNode middleNode(ListNode head) {
        if(head==null)
        return null;
        ListNode low=head;
          ListNode fast=head;
        while(fast!=null&&fast.next!=null){
low=low.next;
fast=fast.next;
fast=fast.next;
        }
return low;
    }
}


四、输入一个链表,输出该链表中倒数第k个结点


public class Solution {
    public ListNode FindKthToTail(ListNode head,int k) {
        if(k<=0||head==null){
            return null;
        }
        ListNode low=head;
        ListNode fast=head;
        while(k-1!=0){
            fast=fast.next;
            if(fast==null){
            return null;
             }
            k--;
        }
        while(fast.next!=null){
            low=low.next;
            fast=fast.next;
        }
        return low;
    }
}
目录
相关文章
|
25天前
【力扣】-- 移除链表元素
【力扣】-- 移除链表元素
33 1
|
1月前
Leetcode第21题(合并两个有序链表)
这篇文章介绍了如何使用非递归和递归方法解决LeetCode第21题,即合并两个有序链表的问题。
47 0
Leetcode第21题(合并两个有序链表)
|
30天前
|
存储
链表题目练习及讲解(下)
链表题目练习及讲解(下)
24 9
|
29天前
|
程序员 C语言
【C语言】LeetCode(力扣)上经典题目
【C语言】LeetCode(力扣)上经典题目
|
30天前
链表题目练习及讲解(上)
链表题目练习及讲解(上)
23 1
|
1月前
|
算法
【链表】算法题(二) ----- 力扣/牛客
【链表】算法题(二) ----- 力扣/牛客
|
1月前
LeetCode第二十四题(两两交换链表中的节点)
这篇文章介绍了LeetCode第24题的解法,即如何通过使用三个指针(preNode, curNode, curNextNode)来两两交换链表中的节点,并提供了详细的代码实现。
16 0
LeetCode第二十四题(两两交换链表中的节点)
|
1月前
Leetcode第十九题(删除链表的倒数第N个节点)
LeetCode第19题要求删除链表的倒数第N个节点,可以通过快慢指针法在一次遍历中实现。
38 0
Leetcode第十九题(删除链表的倒数第N个节点)
|
1月前
|
索引
力扣(LeetCode)数据结构练习题(3)------链表
力扣(LeetCode)数据结构练习题(3)------链表
73 0
|
1月前
【LeetCode 10】142. 环形链表 II
【LeetCode 10】142. 环形链表 II
20 0