Skip to content

Commit 9b287d7

Browse files
authored
Update Implementation.py
1 parent 06a3a78 commit 9b287d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

03. Data Structures/Linked Lists/Implementation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#It consists of nodes which contain data and a pointer to the next node in the list.
33
#The list is connected with the help of these pointers.
44
#These nodes are scattered in memory, quite like the buckets in a hash table.
5-
#The node where the list starts is called the head of theblist and the node where it ends, or last node, is called the tail of the list.
5+
#The node where the list starts is called the head of the list and the node where it ends, or last node, is called the tail of the list.
66
#The average time complexity of some operations invloving linked lists are as follows:
77
#Look-up : O(n)
88
#Insert : O(n)

0 commit comments

Comments
 (0)