Skip to content

Commit 159aea6

Browse files
committed
添加递归法
1 parent 287a74b commit 159aea6

File tree

1 file changed

+21
-12
lines changed

1 file changed

+21
-12
lines changed

ReverseLinkList/ReverseLinkList/Program.cs

+21-12
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,28 @@ static void Main(string[] args)
1919

2020
static ListNode ReverseLink(ListNode head)
2121
{
22-
/*方法一: 迭代法*/
23-
if (head == null || head.next == null) return head;
24-
ListNode p = head.next;
22+
///*方法一: 迭代法*/
23+
//if (head == null || head.next == null) return head;
24+
//ListNode p = head.next;
25+
//head.next = null;
26+
//ListNode q = p;
27+
//while (q != null)
28+
//{
29+
// q = q.next;
30+
// p.next = head;
31+
// head = p;
32+
// p = q;
33+
//}
34+
//return head;
35+
36+
/*方法二:递归法*/
37+
if (head == null || head.next == null)
38+
return head;
39+
ListNode nextNode = head.next;
40+
ListNode newHead = ReverseLink(nextNode);
41+
nextNode.next = head;
2542
head.next = null;
26-
ListNode q = p;
27-
while (q != null)
28-
{
29-
q = q.next;
30-
p.next = head;
31-
head = p;
32-
p = q;
33-
}
34-
return head;
43+
return newHead;
3544
}
3645
}
3746

0 commit comments

Comments
 (0)