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-04-15 12:48:55 +00:00
|
|
|
7. [Merge Two Singly linked List](c-or-cpp/merge.cpp)
|