...

/

Solution: Find the Floor and Ceil of a Number in a Sorted Array

Solution: Find the Floor and Ceil of a Number in a Sorted Array

Review various approaches in detail to find the floor and ceiling values of a given number from a sorted array.

Solution 1

The naive approach to this problem would be:

  1. Traverse the array starting from the 0th index to the last index.
  2. Compare value at each index arr[i] with the given input integer xx.
  3. When you reach the maximum value lesser than equal to xx
...