File tree 2 files changed +16
-0
lines changed
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Description
2
+
3
+ Following are the 7 basic operations performed on Linked List.
4
+
5
+ | Operation | Description |
6
+ | -----------------------| ---------------------------------------------------|
7
+ | ** ` addLast() ` ** | Adds item at the end of the List. |
8
+ | ** ` addFirst() ` ** | Adds item at the beginning of the List. |
9
+ | ** ` addAnywhere() ` ** | Adds item anywhere in the List using Index. |
10
+ | ** ` removeFirst() ` ** | Removes item from the beginning of the List. |
11
+ | ** ` removeLast() ` ** | Removes item from the end of the List. |
12
+ | ** ` removeAnywhere() ` ** | Removes item from anywhere in the List using Index.|
13
+ | ** ` display() ` ** | Display List. |
Original file line number Diff line number Diff line change 11
11
12
12
## Data Structures
13
13
14
+ [ ** Description** ] ( Linked%20List/README.md )
15
+
14
16
1 . [ Linked List] ( /Linked%20List/linkedlist.py )
15
17
2 . [ Circular Linked List] ( Linked%20List/circularLL.py )
18
+ 3 . [ Doubly Linked List] ( Linked%20List/doublyLL.py )
You can’t perform that action at this time.
0 commit comments