https://github.com/imtiajahammad/datastructurepractice
https://github.com/imtiajahammad/datastructurepractice
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/imtiajahammad/datastructurepractice
- Owner: imtiajahammad
- Created: 2024-01-17T04:06:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-10T05:53:05.000Z (over 1 year ago)
- Last Synced: 2025-01-17T08:17:13.836Z (5 months ago)
- Language: C#
- Size: 111 KB
- Stars: 0
- Watchers: 2
- 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