File tree 1 file changed +21
-12
lines changed
ReverseLinkList/ReverseLinkList
1 file changed +21
-12
lines changed Original file line number Diff line number Diff line change @@ -19,19 +19,28 @@ static void Main(string[] args)
19
19
20
20
static ListNode ReverseLink ( ListNode head )
21
21
{
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 ;
25
42
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 ;
35
44
}
36
45
}
37
46
You can’t perform that action at this time.
0 commit comments