Skip to content

Commit f54fa7d

Browse files
committed
chore: linked list continue
1 parent 8a56fc9 commit f54fa7d

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,16 @@ class LinkedListNode {
138138
}
139139
```
140140

141+
Below are the types of LinkedList:
142+
143+
**Singly Linked List**
144+
145+
![](https://i.imgur.com/byjRY7x.png)
146+
147+
**Doubly Linked List**
148+
149+
**Circular Linked List**
150+
141151
### Stack
142152

143153
Depth First Search (DFS) uses a `stack` for storing the nodes that it is visiting.

src/2-linked-list/1-implement-linked-list.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@ class LinkedListNode {
44
this.next = null;
55
}
66
}
7+
8+
class LinkedList {
9+
10+
}

0 commit comments

Comments
 (0)