Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,974 questions

51,918 answers

573 users

How to implement binary search in Pascal

1 Answer

0 votes
program BinarySearchDemo;

const
  size = 8;
  arr: array[1..size] of integer = (2, 3, 6, 7, 12, 15, 17, 19);

function BinarySearch(to_find: integer): integer;
var
  left, right, mid: integer;
begin
  left := 1;
  right := size;

  while left <= right do
  begin
    mid := left + (right - left) div 2;

    if arr[mid] = to_find then
    begin
      BinarySearch := mid - 1;  // Return 0-based index like in C 
      exit;
    end;

    if arr[mid] < to_find then
      left := mid + 1
    else
      right := mid - 1;
  end;

  BinarySearch := -1;
end;

var
  to_find, index: integer;

begin
  to_find := 7;
  index := BinarySearch(to_find);

  if index = -1 then
    writeln('not found')
  else
    writeln('Found at index: ', index);
end.



(*
run:

Found at index: 3

*)

 



answered Sep 20, 2025 by avibootz
...