Skip to content

Added a README for Linkled Lists #146

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Dec 10, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions Competitive Coding/Linked List/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Linked List operations

**This folder contains files that have the following algorithms**

1. All BASIC Linked List operations on a Linked List based on **Pointers**     [File Link](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Linked_List_operation.cpp#L1)

* 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)
* 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)
* 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)
* 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)
* 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)
* Displaying elements of a Linked List. [Code](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Linked_List_operation.cpp#L182-L193)
* 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)
* 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)
* Sorting the Linked List *[Increasing order]*. [Code](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Linked_List_operation.cpp#L284-L307)
* 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)
* Reversing a Linked List. [Code](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Linked_List_operation.cpp#L397-L410)

2. Removing Duplicate Elements from an Unsorted Linked List.    [File Link](https://github.com/codeIIEST/Algorithms/blob/1cc9b4bc30bf8ed5beddca9b55c68a217dc4002b/Competitive%20Coding/Linked%20List/Removing_duplicates_from_Linked_List.cpp#L1)