palsubho801-create/Beginner-Tasks-Repo

Implement a Binary Search Function in C

Aberta

#23 aberto em 16 de out. de 2025

 (2 comentários) (0 reação) (0 responsável)C (4 forks)auto 404
hacktoberfest

Métricas do repositório

Stars
 (0 estrela)
Métricas de merge de PR
 (Nenhuma PRs mesclada em 30d)

Description

Create a new file named 'binary_search.c' that implements the Binary Search algorithm.

Requirements:

  1. The function must assume the input array is already sorted.
  2. It should return the index of the target element if found, or -1 otherwise.
  3. Include a main function to test the search on a hardcoded sorted array.

Guia do colaborador