Skip to content

Commit d1d2e47

Browse files
Create Notes.txt
1 parent 41dc51a commit d1d2e47

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Diff for: 3 LinkedLists/Notes.txt

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Advantages of LinkedList: 1) Constant time insertion and deletion from head.
2+
2) No need to specify the size initially as the size grows dynamically
3+
4+
Disadvantages: 1) No constant time indexing
5+
2) Wastage of space
6+
7+
8+
Circular Linked List applications:
9+
10+
1) When sevaral processes are sharing the cpu, round robin algorithm for scheduling
11+
2) Implementation of Stacks and Queues

0 commit comments

Comments
 (0)