K 个一组翻转链表

K 个一组翻转链表

CategoryDifficultyLikesDislikes
algorithmsHard (67.72%)1967-
Tags

linked-list

Companies

facebook | microsoft

给你链表的头节点 head ,每 k 个节点一组进行翻转,请你返回修改后的链表。

k 是一个正整数,它的值小于或等于链表的长度。如果节点总数不是 k 的整数倍,那么请将最后剩余的节点保持原有顺序。

你不能只是单纯的改变节点内部的值,而是需要实际进行节点交换。

示例 1:

1
2
输入:head = [1,2,3,4,5], k = 2
输出:[2,1,4,3,5]

示例 2:

1
2
输入:head = [1,2,3,4,5], k = 3
输出:[3,2,1,4,5]

提示:* 链表中的节点数目为 n

  • 1 <= k <= n <= 5000

  • 0 <= Node.val <= 1000

    进阶: 你可以设计一个只用 O(1) 额外内存空间的算法解决此问题吗?

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
46
47
48
49
50
51
52
53
54
// @lc code=start
// Definition for singly-linked list.
// #[derive(PartialEq, Eq, Clone, Debug)]
// pub struct ListNode {
//   pub val: i32,
//   pub next: Option<Box<ListNode>>
// }
//
// impl ListNode {
//   #[inline]
//   fn new(val: i32) -> Self {
//     ListNode {
//       next: None,
//       val
//     }
//   }
// }
impl Solution {
    /// ## 解题思路
    /// - 栈
    pub fn reverse_k_group(head: Option<Box<ListNode>>, k: i32) -> Option<Box<ListNode>> {
        if k <= 1 || head.is_none() {
            return head;
        }

        let mut dummy = ListNode::new(0);
        let mut cur_ref = &mut dummy.next;
        let mut stack = vec![];  //临时栈
        let mut head = head;
        while let Some(mut node) = head.take() { // 依次取下头节点
            head = node.next.take();
            stack.push(node);

            // 如果临时栈中的元素个数达到k
            if stack.len() == k as usize {
                // 依次弹出栈中的元素
                while stack.len() > 0 {
                    *cur_ref = stack.pop();
                    cur_ref = &mut cur_ref.as_mut().unwrap().next;
                }
            }
        }
        while stack.len() > 0 {
            *cur_ref = Some(stack.remove(0));
            cur_ref = &mut cur_ref.as_mut().unwrap().next;
        }

        *cur_ref = None;

        dummy.next
    }
}
// @lc code=end

updatedupdated2024-08-252024-08-25