File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
Competitive Coding/Linked List Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change
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.
You can’t perform that action at this time.
0 commit comments