Ask Question
3 April, 14:57

Let t[1 ... n] be a sorted array of distinct integers, some of which may be negative. give an algorithm that can find an index i such that 1 i n and t[i] = i

+3
Answers (1)
  1. 3 April, 16:56
    0
    Assuming we need to find i such that

    1 ≤ i ≤ n and t[i]=i.

    If we need to find only the first occurrence, we can do:

    for i:1 to n {

    if t[i]=i then return (i)

    }

    If exhaustive search is required, then put the results (values of i) in an array or a linked list, return the number of values found, and the array (or linked list).
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Let t[1 ... n] be a sorted array of distinct integers, some of which may be negative. give an algorithm that can find an index i such that ...” in 📙 Mathematics if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers