Final answer:
To perform Interpolation search for the key = 198, we calculate a position and between bounds, adjust low/high, and repeat steps until found or out of range. For the growing data set, Interpolation search is the best choice with the time complexity of O(log log n) on average. The optimal block size for Jump search is the square root of the list's size, resulting in O(\(\sqrt{n}\)) complexity.
Step-by-step explanation:
Interpolation Search
To find the key = 198 in the provided data set using Interpolation search, the following steps can be traced:
- Initialize the variables: low = 0 and high = (n-1) where n is the number of elements in the array.
- While the array is sorted from low index to high index and the key is within the bounds of the array, calculate the position 'pos' where the value might be using the formula: pos = low + [((high - low) / (arr[high] - arr[low])) * (key - arr[low])].
- Check the value at 'pos': if it matches the key (198), the search is successful.
- If the key is larger than arr[pos], set low to pos + 1.
- If the key is smaller than arr[pos], set high to pos - 1.
- Repeat steps 2 to 5 until the value is found or the range is invalid indicating that the key is not present in the array.
Given the ordered growth of the data set, Interpolation search is suitable. Its average-case time complexity is O(log log n), but in the worst case, it can degrade to O(n).