-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNo25_ListNode.cs
95 lines (90 loc) · 3.69 KB
/
No25_ListNode.cs
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
using LeetCode.ExtensionFunction;
using System;
using System.Collections.Generic;
using System.Text;
namespace LeetCode_25
{
//static void Main(string[] args)
//{
// var solution = new Solution();
// while (true)
// {
// //int input = int.Parse(Console.ReadLine());
// //int input2 = int.Parse(Console.ReadLine());
// //string input = Console.ReadLine();
// //string input2 = Console.ReadLine();
// //int[] intArr = input.Split(',').Select(s => int.Parse(s)).ToArray();
// //int input2 = int.Parse(Console.ReadLine());
// var builder = new DataStructureBuilder();
// //int?[] data = new int?[] { 10, 5, 15, null, null, 6, 20 };
// //int?[] data = new int?[] { -10, 9, 20, null, null, 15, 7 };
// //int?[] data = new int?[] { -2147483648, null, 2147483647 };
// //int?[] data = new int?[] { 1, 3, null, null, 2 };
// //var tree = builder.BuildTree(data);
// var listNode = builder.BuildListNode(new int[] { 1, 2, 3, 4, 5 });
// //var listNode2 = builder.BuildListNode(new int[] { 5, 6});
// //listNode2.next.next = listNode.next.next.next.next;
// var res = solution.ReverseKGroup(listNode, 2);
// ConsoleX.WriteLine(res);
// }
//}
public class Solution
{
/// <summary>
/// 单个链表翻转的升级版本,逻辑上会复杂一些。题解对这道题的描述是:本题的目标非常清晰易懂,不涉及复杂的算法,但是实现过程中需要考虑的细节比较多,容易写出冗长的代码。主要考察面试者设计的能力。
/// 时间复杂度:O(n)
/// 空间复杂度:O(1)
/// 自从开始 "画图-总结逻辑-编码",链表题都是一次过,这道是hard,也是一次就过了。看来掌握了一个非常好的分析方式啊。
/// 链表翻转的最优代码可以记一下,我之前的思路也可以用,但是没有官方题解的简洁。
/// </summary>
/// <param name="head"></param>
/// <param name="k"></param>
/// <returns></returns>
public ListNode ReverseKGroup(ListNode head, int k)
{
//建立哨兵节点
ListNode sentinel = new ListNode(-1);
sentinel.next = head;
ListNode temp = sentinel;
while (temp != null)
{
ListNode KPlusOneNode;
if (IsGreaterThanOrEqualK(temp, k, out KPlusOneNode))
temp = ReverseList(KPlusOneNode, temp.next, temp, k);
else
break;
}
return sentinel.next;
}
private bool IsGreaterThanOrEqualK(ListNode head, int k, out ListNode KPlusOneNode)
{
ListNode temp = head;
int count = 0;
while (temp != null && temp.next != null && count < k)
{
count++;
temp = temp.next;
}
KPlusOneNode = count == k ? temp.next : null;
return count == k;
}
private ListNode ReverseList(ListNode prev, ListNode head, ListNode after, int k)
{
ListNode curr = head;
//翻转计数
int count = 0;
//开始翻转
while (curr != null && count < k)
{
count++;
ListNode nextTemp = curr.next;
curr.next = prev;
prev = curr;
curr = nextTemp;
}
//翻转完成后把链表接回去
after.next = prev;
return head;
}
}
}