2021-01-30 12:27:49 +00:00
|
|
|
# Linked Lists
|
|
|
|
|
2021-02-06 15:18:22 +00:00
|
|
|
### C or C++
|
2021-01-30 12:27:49 +00:00
|
|
|
|
2021-02-06 15:18:22 +00:00
|
|
|
1. [Singly Linked List](c-or-cpp/singly.cpp)
|
2021-02-09 13:29:45 +00:00
|
|
|
2. [Reversing Linked List](c-or-cpp/reverse.cpp)
|
2021-04-14 12:40:52 +00:00
|
|
|
3. [Doubly Linked List](c-or-cpp/doubly.cpp)
|
|
|
|
4. [Circular Linked List](c-or-cpp/circular.cpp)
|
|
|
|
5. [Insertion Linked List](c-or-cpp/all-possible-insertion.cpp)
|
|
|
|
6. [Josephus Problem Using Circular Linked List](c-or-cpp/josephus-problem.c)
|
2021-02-28 13:18:15 +00:00
|
|
|
|
2021-02-06 15:18:22 +00:00
|
|
|
### Java
|
|
|
|
|
2021-03-23 15:20:13 +00:00
|
|
|
1. [Singly Linked List](java/singly.java)
|
2021-04-01 14:26:43 +00:00
|
|
|
2. [Doubly Linked List](java/doubly.java)
|
2021-04-14 12:40:52 +00:00
|
|
|
3. [Circular Linked List](java/circular.java)
|
|
|
|
4. [Reverse Linked List](java/reverse.java)
|
|
|
|
5. [Clone Linked List with Random Pointer](java/clone-linkedlist-with-rnd-pointer.java)
|
2021-02-06 15:18:22 +00:00
|
|
|
|
2021-03-23 15:20:13 +00:00
|
|
|
### JavaScript
|
|
|
|
|
|
|
|
1. [Singly Linked List](js/singly.js)
|
2021-02-06 15:18:22 +00:00
|
|
|
|
2021-03-23 15:20:13 +00:00
|
|
|
### Python
|
2021-04-14 12:40:52 +00:00
|
|
|
|
2021-03-23 15:20:13 +00:00
|
|
|
1. [Singly Linked List](Python/singly.py)
|
2021-03-26 14:07:29 +00:00
|
|
|
2. [Doubly Linked List](Python/doubly.py)
|