2021-04-25 15:11:36 +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
|
2021-04-29 15:35:44 +00:00
|
|
|
- [Bubble Sort](sorting/bubble-sort.c)
|
2021-04-25 15:11:36 +00:00
|
|
|
- [Merge Sort](sorting/merge-sort.c)
|
|
|
|
- [Insertion Sort](sorting/insertion-sort.c)
|
2021-05-08 17:04:14 +00:00
|
|
|
- [Heap Sort](sorting/heap-sort.c)
|
2021-04-25 15:11:36 +00:00
|
|
|
|
|
|
|
## Strings
|
|
|
|
- [Count Words](strings/count-words.c)
|
|
|
|
- [Palindrome](strings/palindrome.c)
|
|
|
|
- [Permutation of String](string/Permutation-of-String.c)
|
|
|
|
|
|
|
|
## Tree
|
|
|
|
- [Height Of Tree](tree/height-of-a-tree.c)
|
|
|
|
- [Max and Min Element Of Tree](tree/min-and-max-of-tree.c)
|
|
|
|
|
|
|
|
## Searching
|
|
|
|
- [Binary Search](searching/Binary-search.c)
|
2021-04-28 22:24:09 +00:00
|
|
|
- [Jump Search](searching/Jump-search.c)
|
2021-05-04 10:28:56 +00:00
|
|
|
- [Ternary Search](searching/Ternary-search.c)
|