DSA/algorithms/C/README.md

34 lines
914 B
Markdown
Raw Normal View History

# 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)
- [Merge Sort](sorting/merge-sort.c)
- [Insertion Sort](sorting/insertion-sort.c)
## 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)
- [Jump Search](searching/Jump-search.c)