Leetcode 876. Middle of the Linked List 快慢指针求链表中点

  • 快指针比慢指针快一倍的速度
  • 如果奇数个点,刚好落在中央,偶数个点则会落在中点的两个中的第二个
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode() : val(0), next(nullptr) {}
 *     ListNode(int x) : val(x), next(nullptr) {}
 *     ListNode(int x, ListNode *next) : val(x), next(next) {}
 * };
 */
class Solution {
public:
    ListNode* middleNode(ListNode* head) {
        ListNode* fast = head;
        ListNode* slow = head;
        while(fast && fast->next){
            fast=fast->next->next;
            slow=slow->next;
        }
        return slow;
    }
};

你可能感兴趣的:(算法)