Joe Wilson

Joe Wilson

  • NA
  • 7.8k
  • 418.1k

binary search

Mar 2 2014 7:48 AM
 Enter a Number which in the below array then arrange them rewrite it's  array number
 
 
 0 1 2 3 4 5
 62 40 25 81 24 7
 
 for example: if we choose a number as 25 it after arranging the arrays it rewrite the number of 25 array and print this  arrays:
 The array Number of 25 is 3
 
 
 0 1 2 3 4
 7     24 25 40 62 81
 
 


Answers (1)