File tree 1 file changed +43
-0
lines changed
1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change
1
+ ##==================================
2
+ ## Leetcode
3
+ ## Student: Vandit Jyotindra Gajjar
4
+ ## Year: 2020
5
+ ## Problem: 206
6
+ ## Problem Name: Reverse Linked List
7
+ ##===================================
8
+ #
9
+ #Reverse a singly linked list.
10
+ #
11
+ #Example:
12
+ #
13
+ #Input: 1->2->3->4->5->NULL
14
+ #Output: 5->4->3->2->1->NULL
15
+ class Solution :
16
+ def reverseList (self , head ):
17
+ previous = None #Set previous to None
18
+ current = head #Set current to head
19
+ while current : #While our head is not empty
20
+ following = current .next #Our following points to current.next
21
+ current .next = previous #Current.next will be previous
22
+ previous = current #Our previous points to current
23
+ current = following #Current points to following
24
+ head = previous #Set head to previous
25
+ return head #We'll return head at the end.
26
+ #Example
27
+ #Input: head = [1, 2]
28
+ #previous = None
29
+ #current = [1, 2]
30
+ #While Loop:
31
+ #current = [1, 2]
32
+ #following = [2]
33
+ #current next = None (Null)
34
+ #previous = [1]
35
+ #current = [2]
36
+ #--------------
37
+ #current = [2]
38
+ #following = None (Null)
39
+ #current next = [1]
40
+ #previous = [2, 1]
41
+ #current = None (Null)
42
+ - - - - - - - - - - - - - - -
43
+ #head = [2, 1]
You can’t perform that action at this time.
0 commit comments