DSA/algorithms/C/README.md

85 lines
2.5 KiB
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)
- [Reverse an array](arrays/reverse-array.c)
- [Maximum difference](arrays/maximum-difference.c)
- [Largest Element](arrays/largestElement.c)
## Bit Manipulation
- [Add and Subtract](bit-manipulation/add-and-sub-bitwise.c)
- [Multiply](bit-manipulation/multiply-bitwise.c)
- [Divide bitwise](bit-manipulation/divide-bitwise.c)
## Graphs
- [Prim's Algorithm](graphs/Prim's-algorithm.c)
- [Breadth First Search](graphs/breadth-first-search.c)
- [Depth First Search](graphs/depth-first-search.c)
## Linked Lists
- [Insert and Delete at Beginning](linked-lists/Insert-and-delete-beginning.c)
- [Josephus Problem](linked-lists/josephus-problem.c)
- [Circular Linked List](linked-lists/Insert-and-del-beginning-circular-ll.c)
- [Merge two Linked Lists](linked-lists/merge-two-linkedlists.c)
- [Reverse a Linked List](linked-lists/reverse-linkedlists.c)
- [Doubly Linked List](linked-lists/doubly-linked-list.c)
2021-10-01 14:59:58 +00:00
- [Glued-Linked-List](linked-lists/gl-threads.c)
## Maths
- [Palindrome Number](maths/palindrome.c)
2022-01-17 12:50:23 +00:00
- [Fibonacci Series](maths/fibonacci-series.c)
## Queues
- [Double Ended Queue using array](queues/double-ended-queue-using-array.c)
- [Circular Queue using array](queues/circular-queue-using-array.c)
## Recursion
- [Tower of Hanoi](recursion/tower-of-hanoi.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)
2021-05-08 17:04:14 +00:00
- [Heap Sort](sorting/heap-sort.c)
2021-07-30 13:46:05 +00:00
- [Selection Sort](sorting/selection-sort.c)
2021-12-18 13:50:37 +00:00
- [Quick Sort](sorting/quick-sort.c)
2022-02-02 05:33:55 +00:00
- [Shell Sort](sorting/shell-sort.c)
2022-03-21 12:51:55 +00:00
- [Radix Sort](sorting/radix-sort.c)
## Strings
- [Count Words](strings/count-words.c)
- [Palindrome](strings/palindrome.c)
2021-05-19 12:44:20 +00:00
- [Permutation of String](strings/Permutation-of-String.c)
- [Longest Common Subsequence](strings/longest-common-subsequence.c)
2021-07-12 12:30:17 +00:00
## Tree
- [Height Of Tree](tree/height-of-a-tree.c)
- [Max and Min Element Of Tree](tree/min-and-max-of-tree.c)
- [Binary Search Tree](tree/binary-search-tree.c)
2021-07-08 12:34:16 +00:00
- [Avl Tree](tree/avl-tree.c)
2021-07-12 12:30:17 +00:00
- [Min Heap](tree/min-heap.c)
- [Max Heap](tree/max-heap.c)
## Searching
- [Binary Search](searching/Binary-search.c)
- [Jump Search](searching/Jump-search.c)
- [Ternary Search](searching/Ternary-search.c)
- [Interpolation Search](searching/Interpolation-search.c)
## Stacks
- [Stack using arrays](stacks/stack-using-arrays.c)
- [Stack using Linked List](stacks/stack-using-linked-list.c)