Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/imtiajahammad/datastructurepractice


https://github.com/imtiajahammad/datastructurepractice

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# LinkedList

## Types of LinkedList
1. **Single Linked List:** Navigation is forward only
2. **Doubly Linked List:** Forward and backward navigation is possible
3. **Circular Linked List:** Last element is linked to the first element

#### **Single Linked List:**
- Navigation is forward only.
- A single linked list is made up of nodes containing:
- Data: Contains the actual data.
- Link: Contains the address of the next node in the list.


Single Linked List

#### References:
- https://www.youtube.com/watch?v=Hj_rA0dhr2I&t=2589s&ab_channel=freeCodeCamp.org
- another link