Skip to content

Commit 69c92ea

Browse files
committed
Added README.md for Linked Lists
1 parent 1cc9b4b commit 69c92ea

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#Linked List operations
2+
3+
**This folder contains files that have the following programs**
4+
5+
1. All BASIC Linked List operations on a Linked List based on *Pointers*
6+
7+
* Adding elements at the *end* of a Linked List.
8+
* Adding elements at the *begining* of a Linked List.
9+
* Finding the *number of nodes* in a Linked List.
10+
* Adding an element at the *middle (Mid-point Position)* of a Linked List.
11+
* Adding elements at a *specific position* of a Linked List.
12+
* Displaying elements of a Linked List.
13+
* Deleting the element at the *middle (Mid-point Position)* of the Linked List.
14+
* Deleting a *specific element* from a Linked List.
15+
* Sorting the Linked List *[Increasing order]*.
16+
* Merging two Sorted *[Increasing order]* Linked Lists.
17+
* Reversing a Linked List.
18+
19+
2. Removing Duplicate Elements from an unsorted Linked List.

0 commit comments

Comments
 (0)