forked from fnplus/interview-techdev-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request fnplus#308 from Aditya2603/patch-4
[Data Structure] Circular Linked List [Python]
- Loading branch information
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
Data Structures/Circular Linked List/Python/circularlinkedlist.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#Represents the node of list. | ||
class node: | ||
def __init__(self,data): | ||
self.data = data; | ||
self.next = None; | ||
|
||
class createlist: | ||
#Declaring head and tail pointer as null. | ||
def __init__(self): | ||
self.head = node(None); | ||
self.tail = node(None); | ||
self.head.next = self.tail; | ||
self.tail.next = self.head; | ||
|
||
#This function will add the new node at the end of the list. | ||
def add(self,data): | ||
newnode = node(data); | ||
#Checks if the list is empty. | ||
if self.head.data is None: | ||
#If list is empty, both head and tail would point to new node. | ||
self.head = newnode; | ||
self.tail = newnode; | ||
newnode.next = self.head; | ||
else: | ||
#tail will point to new node. | ||
self.tail.next = newnode; | ||
#New node will become new tail. | ||
self.tail = newnode; | ||
#Since, it is circular linked list tail will point to head. | ||
self.tail.next = self.head; | ||
|
||
#Displays all the nodes in the list | ||
def display(self): | ||
current = self.head; | ||
if self.head is None: | ||
print("List is empty"); | ||
return; | ||
else: | ||
print("Nodes of the circular linked list: "); | ||
#Prints each node by incrementing pointer. | ||
print(current.data), | ||
while(current.next != self.head): | ||
current = current.next; | ||
print(current.data), | ||
|
||
|
||
class circularlinkedList: | ||
cl = createlist(); | ||
#Adds data to the list | ||
cl.add(1); | ||
cl.add(2); | ||
cl.add(3); | ||
cl.add(4); | ||
#Displays all the nodes present in the list | ||
cl.display(); |