次のアルゴリズムを検討してください
ALGORITHM Find(A[0..n‐1])
if n ==1 return A[0]
else temp = Find(A[0..n‐2])
if temp ≤ A[n‐1] return temp
else return A[n‐1]
a. What does this algorithm compute?
b. Set up a recurrence relation for the algorithm’s basic operation count and solve it.
このアルゴリズムは A[0]、A[0..3]、A[0..5]、A[0.7]、A[0..8] を返しますか? n=9 の場合は? 私は正しい軌道に乗っていますか?
どなたか譲っていただけると助かります!ありがとう!