Skip to content

Commit 9b46fd1

Browse files
committed
Added links to the specific block of code
1 parent 5bb93af commit 9b46fd1

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Competitive Coding/Linked List/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44

55
1. All BASIC Linked List operations on a Linked List based on *Pointers*
66

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.
7+
* Adding elements at the *end* of a Linked List. [Code](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Linked_List_operation.cpp#L36-L67)
8+
* Adding elements at the *begining* of a Linked List. [Code](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Linked_List_operation.cpp#L69-L94)
9+
* Finding the *number of nodes* in a Linked List. [Code](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Linked_List_operation.cpp#L96-L114)
10+
* Adding an element at the *middle (Mid-point Position)* of a Linked List. [Code](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Linked_List_operation.cpp#L116-L152)
11+
* Adding elements at a *specific position* of a Linked List. [Code](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Linked_List_operation.cpp#L154-L180)
12+
* Displaying elements of a Linked List. [Code](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Linked_List_operation.cpp#L182-L193)
13+
* Deleting the element at the *middle (Mid-point Position)* of the Linked List. [Code](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Linked_List_operation.cpp#L195-L243)
14+
* Deleting a *specific element* from a Linked List. [Code](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Linked_List_operation.cpp#L247-L282)
15+
* Sorting the Linked List *[Increasing order]*. [Code](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Linked_List_operation.cpp#L284-L307)
16+
* Merging two Sorted *[Increasing order]* Linked Lists. [Code](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Linked_List_operation.cpp#L309-L395)
17+
* Reversing a Linked List. [Code](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Linked_List_operation.cpp#L397-L410)
1818

1919
2. Removing Duplicate Elements from an unsorted Linked List.

0 commit comments

Comments
 (0)