Skip to content

Commit 747eb7d

Browse files
Added README
1 parent de9f587 commit 747eb7d

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

Linked List/README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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. |

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,8 @@
1111

1212
## Data Structures
1313

14+
[**Description**](Linked%20List/README.md)
15+
1416
1. [Linked List](/Linked%20List/linkedlist.py)
1517
2. [Circular Linked List](Linked%20List/circularLL.py)
18+
3. [Doubly Linked List](Linked%20List/doublyLL.py)

0 commit comments

Comments
 (0)