Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imtiajahammad/datastructurepractice
https://github.com/imtiajahammad/datastructurepractice
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/imtiajahammad/datastructurepractice
- Owner: imtiajahammad
- Created: 2024-01-17T04:06:04.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-02-10T05:53:05.000Z (11 months ago)
- Last Synced: 2024-02-10T06:29:47.307Z (11 months ago)
- Language: C#
- Size: 102 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.
#### References:
- https://www.youtube.com/watch?v=Hj_rA0dhr2I&t=2589s&ab_channel=freeCodeCamp.org
- another link