2021-04-18 16:19:00 +00:00
|
|
|
# C
|
|
|
|
|
|
|
|
## Arrays
|
|
|
|
- [Even and Odd](arrays/even-and-odd.c)
|
|
|
|
- [Unique Elements in an array](arrays/unique-elements-in-an-array.c)
|
|
|
|
|
|
|
|
## Graphs
|
|
|
|
- [Prim's Algorithm](graphs/Prim's-algorithm.c)
|
|
|
|
|
|
|
|
## Linked Lists
|
|
|
|
- [Insert and Delete at Beginning](linked-lists/Insert-and-delete-beginning.c)
|
|
|
|
- [Josephus Problem](linked-lists/josephus-problem.c)
|
|
|
|
|
|
|
|
## Queues
|
|
|
|
- [Double Ended Queue using array](queues/double-ended-queue-using-array.c)
|
|
|
|
|
|
|
|
## Sorting
|
|
|
|
- [Merge Sort](sorting/merge-sort.c)
|
2021-04-20 12:22:15 +00:00
|
|
|
- [Insertion Sort](sorting/insertion-sort.c)
|
2021-04-18 16:19:00 +00:00
|
|
|
|
|
|
|
## Strings
|
|
|
|
- [Count Words](strings/count-words.c)
|
|
|
|
- [Palindrome](strings/palindrome.c)
|
|
|
|
- [Permutation of String](string/Permutation-of-String.c)
|