algo-studies/README.md
mcmrcs@proton.me 6d6f2a58f2
Some checks are pending
test / build-and-test (push) Waiting to run
chore: add interpolation search
2024-07-01 13:38:21 +01:00

729 B

Algorithm Checklist

test

This repository contains implementations of various search and sort algorithms in Zig.

Search Algorithms

  • Binary Search
  • Jump Search
  • Interpolation Search
  • Exponential Search
  • Fibonacci Search
  • Depth First Search (DFS)
  • Breadth First Search (BFS)

Sort Algorithms

  • Bubble Sort
  • Selection Sort
  • Insertion Sort
  • Merge Sort
  • Quick Sort
  • Heap Sort
  • Radix Sort
  • Bucket Sort
  • Shell Sort
  • Counting Sort
  • Comb Sort
  • Cocktail Shaker Sort