数据结构,删除链表倒数第n个节点,并返回新的头节点

哈哈哈哈哈哈

//设总节点数x个

//需要让1号节点遍历到

//最后一个节点时,二号节点遍历到要删除节点前一个

//1,2号节点开始都指向新的头节点,

//由于代码中新加了个头节点

//1号需要走到x+1位置,需要移动x次

//first=first->next;

//2号需要走到正序的(1+x)-n个节点位置,就是删除节点前一个

//就需要走x-n次

//second=second->next;

//先让1号节点走1号节点要走的次数减去二号要走的次数

//x-(x-n) = n次;

//然后1号2号只需要走相同的次数就

//能到达相同目标了

// 删除倒数第 n 个节点

bash 复制代码
#include <stdio.h>
#include <stdlib.h>

typedef struct ListNode {
    int val;
    struct ListNode *next;
} ListNode;

// 创建一个新的节点
ListNode* createNode(int val) {
    ListNode *newNode = (ListNode *)malloc(sizeof(ListNode));
    newNode->val = val;
    newNode->next = NULL;
    return newNode;
}

//设总节点数x个
//需要让1号节点遍历到
//最后一个节点时,二号节点遍历到要删除节点前一个
//1,2号节点开始都指向新的头节点,

//由于代码中新加了个头节点
//1号需要走到x+1位置,需要移动x次 
//first=first->next;
//2号需要走到正序的(1+x)-n个节点位置,就是删除节点前一个
//就需要走x-n次
//second=second->next;

//先让1号节点走1号节点要走的次数减去二号要走的次数
//x-(x-n) = n次;
//然后1号2号只需要走相同的次数就
//能到达相同目标了

// 删除倒数第 n 个节点
ListNode* removeNthFromEnd(ListNode* head, int n) {
    if (head == NULL) {
        return NULL;
    }

    ListNode *dummy = (ListNode *)malloc(sizeof(ListNode));
    dummy->next = head;
    ListNode *first = dummy;
    ListNode *second = dummy;

    // 移动 first 指针 n 步,移动了n次
    for (int i = 0; i < n; i++) {
        first = first->next;
    }

    // 同时移动 first 和 second 指针,直到 first 到达链表末尾
    while (first->next != NULL) {
        first = first->next;
        second = second->next;
    }

    // 删除 second 的下一个节点
    ListNode *temp = second->next;
    second->next = temp->next;
    free(temp);

    ListNode *result = dummy->next;
    free(dummy);

    return result;
}

// 打印链表
void printList(ListNode *head) {
    while (head != NULL) {
        printf("%d -> ", head->val);
        head = head->next;
    }
    printf("NULL\n");
}

int main() {
    // 创建链表 1 -> 2 -> 3 -> 4 -> 5
    ListNode *head = createNode(1);
    head->next = createNode(2);
    head->next->next = createNode(3);
    head->next->next->next = createNode(4);
    head->next->next->next->next = createNode(5);

    printf("Original list: ");
    printList(head);

    int n = 2;
    head = removeNthFromEnd(head, n);

    printf("After removing the %d-th node from end: ", n);
    printList(head);

    return 0;
}

运行结果

相关推荐
Yan.love2 小时前
开发场景中Java 集合的最佳选择
java·数据结构·链表
冠位观测者2 小时前
【Leetcode 每日一题】2545. 根据第 K 场考试的分数排序
数据结构·算法·leetcode
就爱学编程3 小时前
重生之我在异世界学编程之C语言小项目:通讯录
c语言·开发语言·数据结构·算法
ALISHENGYA4 小时前
全国青少年信息学奥林匹克竞赛(信奥赛)备考实战之分支结构(实战项目二)
数据结构·c++·算法
DARLING Zero two♡4 小时前
【优选算法】Pointer-Slice:双指针的算法切片(下)
java·数据结构·c++·算法·leetcode
波音彬要多做6 小时前
41 stack类与queue类
开发语言·数据结构·c++·学习·算法
Noah_aa6 小时前
代码随想录算法训练营第五十六天 | 图 | 拓扑排序(BFS)
数据结构
KpLn_HJL7 小时前
leetcode - 2139. Minimum Moves to Reach Target Score
java·数据结构·leetcode
AC使者12 小时前
5820 丰富的周日生活
数据结构·算法