C语言刷题 LeetCode 30天挑战 (八)快慢指针法

//Middle of the Linked List

//Given a non-empty, singly linked list with head node head ,

//return a middle node of linked list.

//If there are two middle nodes, return the second middle node

//Example 1:

//Input:1,2,3,4,5]

//0utput:Node 3from this list(Serialization:3,4,5)

//The returned node has value 3, (The judge's serialization of this node is 3,4,5).

//Note that we returned a ListNode object ans, such that:

//ans,val =3,ans.next,val =4,ans.next,next.val = 5, and ans.next.next.next = NULL.

//Example 2:

//Input:I1,2,3,4,5,6

//Output:Node 4 from this list(serialization:4,5,6)

//Since the list has two middle nodes with values 3 and 4, we return the second one.

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

// Definition for singly-linked list.
struct ListNode {
    int val;
    struct ListNode *next;
};

// Function to find the middle node
struct ListNode* middleNode(struct ListNode *head) {
    struct ListNode *slow = head;
    struct ListNode *fast = head;

    // Move slow pointer one step and fast pointer two steps
    while (fast != NULL && fast->next != NULL) {
        slow = slow->next;
        fast = fast->next->next;
    }
    
    // When fast reaches the end, slow is at the middle
    return slow;
}

// Helper function to create a new ListNode
struct ListNode* createNode(int val) {
    struct ListNode* newNode = (struct ListNode*) malloc(sizeof(struct ListNode));
    newNode->val = val;
    newNode->next = NULL;
    return newNode;
}

// Helper function to print the linked list from a given node
void printList(struct ListNode* node) {
    while (node != NULL) {
        printf("%d ", node->val);
        node = node->next;
    }
    printf("\n");
}

int main() {
    // Example 1: [1, 2, 3, 4, 5]
    struct 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);
    
    struct ListNode* middle = middleNode(head);
    printf("Middle node value: %d\n", middle->val);
    printf("List from middle node: ");
    printList(middle);
    
    // Example 2: [1, 2, 3, 4, 5, 6]
    struct ListNode* head2 = createNode(1);
    head2->next = createNode(2);
    head2->next->next = createNode(3);
    head2->next->next->next = createNode(4);
    head2->next->next->next->next = createNode(5);
    head2->next->next->next->next->next = createNode(6);
    
    middle = middleNode(head2);
    printf("Middle node value: %d\n", middle->val);
    printf("List from middle node: ");
    printList(middle);

    return 0;
}
相关推荐
是多巴胺不是尼古丁3 分钟前
期末java复习--string
java·开发语言·python
Survivor0018 分钟前
高并发系统流量治理的底层算法
java·开发语言
bIo7lyA8v11 分钟前
算法可视化对教学与调试效率的影响分析的技术8
算法
RisunJan14 分钟前
Linux命令-pmap(进程内存映射报告工具)
linux·服务器·网络
郝学胜-神的一滴18 分钟前
CMake 017:彩色日志输出实战
linux·c语言·开发语言·c++·软件工程·软件构建·cmake
hunterkkk(c++)21 分钟前
优先队列启发式最短路径快速算法(优化SPFA)-HEAP_SPFA算法
算法
m0_5474866624 分钟前
《数字图像处理:使用MATLAB分析与实现》全套课件PPT
开发语言·matlab·powerpoint
Full Stack Developme32 分钟前
Apache Tika 教程
java·开发语言·python·apache
暗影天帝32 分钟前
BPI-R3 Mini NAND 刷机教程(Webfailsafe 方案)
linux
SiliconGazer34 分钟前
第15届国赛满分代码解析(下)—— 运动轨迹算法、按键交互与完整状态机
算法·状态机·stc15f2k60s2·浮点运算·蓝桥杯国赛·运动轨迹、·向量分解