链表的中间结点

链表的中间结点

CategoryDifficultyLikesDislikes
algorithmsEasy (63.45%)144-

Tags

ordered-map

Companies

Unknown

给定一个带有头结点 head 的非空单链表,返回链表的中间结点。

如果有两个中间结点,则返回第二个中间结点。

示例 1:

1
2
3
4
5
输入:[1,2,3,4,5]
输出:此列表中的结点 3 (序列化形式:[3,4,5])
返回的结点值为 3 。 (测评系统对该结点序列化表述是 [3,4,5])。
注意,我们返回了一个 ListNode 类型的对象 ans,这样:
ans.val = 3, ans.next.val = 4, ans.next.next.val = 5, 以及 ans.next.next.next = NULL.

示例 2:

1
2
3
输入:[1,2,3,4,5,6]
输出:此列表中的结点 4 (序列化形式:[4,5,6])
由于该列表有两个中间结点,值分别为 3 和 4,我们返回第二个结点。

提示:

  • 给定链表的结点数介于 1 和 100 之间。

Discussion | Solution

代码

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
impl Solution {
    pub fn middle_node(head: Option<Box<ListNode>>) -> Option<Box<ListNode>> {
        let mut head = head;  //move head to mut head
        let mut fast_ref = head.as_ref();  //share head fast ref
        let mut slow_ref = head.as_ref();  //share head slow ref

        // loop with fast and slow ref
        loop {

            if let Some(node) = fast_ref {
                fast_ref = node.next.as_ref();
            } else {
                break;
            }
            if let Some(node) = fast_ref {
                fast_ref = node.next.as_ref();
            } else {
                break;
            }
            if let Some(node) = slow_ref {
                slow_ref = node.next.as_ref();
            } else {
                break;
            }
        }

        // 记录中间节点
        let mid_ref = if let Some(node) = slow_ref {
            node.as_ref() as *const ListNode
        } else {
            return None;
        };
 
        //释放前半段链表
        while let Some(node) = head.as_ref() {
            let addr = node.as_ref() as *const ListNode;
            if addr != mid_ref {
                head = head.unwrap().next;
            } else {
                break;
            }
        }
        head
    }
}
updatedupdated2024-11-232024-11-23