Skip to content

Instantly share code, notes, and snippets.

View Cap-Panaka's full-sized avatar
💭
up!

Cap-Panaka Cap-Panaka

💭
up!
View GitHub Profile
@Cap-Panaka
Cap-Panaka / BinarySearch.cpp
Created May 1, 2026 03:54 — forked from christophewang/BinarySearch.cpp
Binary Search in C++
#include <iostream>
/* Binary Search */
int binarySearch(int *array, int n, int target)
{
int low = 0;
int high = n - 1;
while (low <= high)
{