-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNo206_ListNode.cs
126 lines (115 loc) · 4.13 KB
/
No206_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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
using LeetCode.ExtensionFunction;
using System;
using System.Collections.Generic;
using System.Text;
namespace LeetCode_206
{
//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.ReverseList(listNode);
// ConsoleX.WriteLine(res);
// }
//}
public class Solution
{
/// <summary>
/// 题解的迭代,最优解,最优写法
/// </summary>
/// <param name="head"></param>
/// <returns></returns>
public ListNode ReverseList(ListNode head)
{
ListNode prev = null;
ListNode curr = head;
while (curr != null)
{
ListNode nextTemp = curr.next;
curr.next = prev;
prev = curr;
curr = nextTemp;
}
return prev;
}
/// <summary>
/// 迭代
/// 时间复杂度:O(n)
/// 空间复杂度:O(1),还可以用 O(n) 的来做,就不会这么绕,直接new
/// </summary>
/// <param name="head"></param>
/// <returns></returns>
//public ListNode ReverseList(ListNode head)
//{
// ListNode res = null;
// ListNode preNode = null;
// while (head != null)
// {
// //处于第一个节点的时候
// if (preNode != null)
// preNode.next = res;
// res = preNode;
// preNode = head;
// head = head.next;
// //处理最后一个节点
// if (head == null)
// preNode.next = res;
// }
// return preNode;
//}
/// <summary>
/// 题解的递归。都挺好的,就是逻辑绕,实属协作开发的下乘解法,写一个算法要写十行注释
/// </summary>
/// <param name="head"></param>
/// <returns></returns>
//public ListNode ReverseList(ListNode head)
//{
// if (head == null || head.next == null) return head;
// ListNode p = ReverseList(head.next);
// head.next.next = head;
// head.next = null;
// return p;
//}
/// <summary>
/// 递归。写的不好看,哈哈哈
/// 时间复杂度:O(n)
/// 空间复杂度:O(n),由于使用递归,将会使用隐式栈空间。递归深度可能会达到 n 层。
/// </summary>
/// <param name="head"></param>
/// <returns></returns>
//public ListNode ReverseList(ListNode head)
//{
// FindNext(head);
// return _res;
//}
//private ListNode _res;
//private ListNode FindNext(ListNode head)
//{
// if (head == null)
// return null;
// var nextNode = FindNext(head.next);
// if (nextNode != null)
// nextNode.next = head;
// else
// _res = head;
// head.next = null;
// return head;
//}
}
}