No description
Find a file
mcmrcs@proton.me e75880d45c
Some checks failed
test / build-and-test (push) Has been cancelled
docs: add license
2024-07-01 15:30:34 +01:00
.github/workflows chore: add interpolation search 2024-07-01 13:38:21 +01:00
src chore: add interpolation search 2024-07-01 13:38:21 +01:00
.gitignore launching 2024-06-25 21:40:09 +01:00
build.zig launching 2024-06-25 21:40:09 +01:00
build.zig.zon launching 2024-06-25 21:40:09 +01:00
LICENSE docs: add license 2024-07-01 15:30:34 +01:00
README.md chore: add interpolation search 2024-07-01 13:38:21 +01:00

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