Skip to content

Releases: Omi-code404/binary-search-algorithm

Initial Release - Binary Search Implementation

17 Jun 18:33
cf481f9

Choose a tag to compare

🚀 Features

  • Implemented a recursive binary search algorithm
  • Added comprehensive test cases
  • MIT licensed open-source project

📦 How to Use

c
#include "binary_search.h"

int main() {
int arr[] = {2, 5, 8, 12, 16, 25, 38, 56, 72, 91};
int index = binary_search(arr, 0, 9, target);
}

✅ Changelog

  • Initial implementation
  • Added documentation