iT邦幫忙

2024 iThome 鐵人賽

DAY 4
0
佛心分享-刷題不只是刷題

C/C++ 刷題30天系列 第 4

Day04__C語言刷LeetCode

  • 分享至 

  • xImage
  •  

876. Middle of the Linked List

tags: Easy、Linked List

Given the head of a singly linked list, return the middle node of the linked list.
If there are two middle nodes, return the second middle node.

解法:

將原本的fast->next->next;改成使用fast->next;寫兩次,有些編譯器可以更好的去改善效能跟速度,所以這樣寫的速度會更快

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
struct ListNode* middleNode(struct ListNode* head) {
    struct ListNode *slow = head;
    struct ListNode *fast = head;
    
    while (fast != NULL && fast->next != NULL) {
        slow = slow->next;
        fast = fast->next;
        fast = fast->next;
    }

    return slow;
}

上一篇
Day03__C語言刷LeetCode
下一篇
Day05__C語言刷LeetCode
系列文
C/C++ 刷題30天30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言