We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef43bf9 commit 2139485Copy full SHA for 2139485
Data_Structure/src/Linked Lists/circular_linked_list.py
@@ -1,3 +1,10 @@
1
+#Another python program to implement and Insert a node by taking an pointer pointing to locations one want to insert a node to.
2
+#The insertion operations are carried out:
3
+#a. in empty linked list
4
+#b. at beginning of the linked list
5
+#c. at end of the linked list
6
+#d. in between the nodes
7
+
8
class Node:
9
10
def init(self, data):
@@ -134,4 +141,4 @@ def traverse(self):
134
141
135
142
last = llist.addAfter(10,8)
136
143
137
- llist.traverse()
144
+ llist.traverse()
0 commit comments