Skip to content

Commit

Permalink
Updated LL README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
amaitou committed Jul 25, 2024
1 parent 34dae6d commit 0fdb33b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions linkedlist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
![Singlelinkedlist](https://github.com/user-attachments/assets/604a55db-e939-489c-a0e5-271e103b2c08)
---

# Overview

- [Introduction to LinkedList](https://github.com/amaitou/DataStructures/tree/main/linkedlist#introduction-to-linkedlist)
- [Different Types of Linked Lists](https://github.com/amaitou/DataStructures/tree/main/linkedlist#different-types-of-linked-lists)
- [Difference Between Singly and Doubly Linked Lists](https://github.com/amaitou/DataStructures/tree/main/linkedlist#difference-between-singly-and-doubly-linked-lists)
- [When to Use Each](https://github.com/amaitou/DataStructures/tree/main/linkedlist#when-to-use-each)
- [The purpose of each](https://github.com/amaitou/DataStructures/tree/main/linkedlist#the-purpose-of-each)

---

# Introduction to LinkedList

A linked list is a linear data structure where elements are stored in nodes, with each node containing a reference (or link) to the next node in the sequence. This allows for efficient insertion and deletion of elements as it does not require shifting elements like in an array.
Expand Down

0 comments on commit 0fdb33b

Please sign in to comment.