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-02-09 13:24:16 +00:00
|
|
|
2. [Doubly Linked List](c-or-cpp/doubly.cpp)
|
2021-02-11 20:25:00 +00:00
|
|
|
3. [Circular Linked List](c-or-cpp/circular.cpp)
|
2021-02-26 15:39:29 +00:00
|
|
|
4. [Insertion Linked List](c-or-cpp/all-possible-insertion.cpp)
|
2021-03-02 00:04:36 +00:00
|
|
|
5. [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-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
|
|
|
|
1. [Singly Linked List](Python/singly.py)
|
2021-03-26 14:07:29 +00:00
|
|
|
2. [Doubly Linked List](Python/doubly.py)
|