How is the number of loop iterations needed to search a sorted array related to its size?
The number of loop iterations needed to search a sorted array is related to the size of the array in that the size of the array will be the upper bound of the iteration which determines the middle position of the array.
Comments
Leave a comment