Skip to content

Commit 6c877da

Browse files
committed
Adding Simple Solution for Problem - 206 - Reverse Linked List
1 parent 8c95509 commit 6c877da

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

Reverse_LinkedList/SimpleSolution.py

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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]

0 commit comments

Comments
 (0)