Releases: Omi-code404/binary-search-algorithm
Releases · Omi-code404/binary-search-algorithm
Initial Release - Binary Search Implementation
🚀 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