Last time | Next time |
If one is doing a one-off search, then use sequentialsearch -- requiring \(n\) comparisons in the worst case. But if one is doing multiple searches of the list, then it may pay to sort it first:
has a ratio of Fibonacci numbers as the worst case, which we discovered with this handout.
Last time we used this handout to discover that the worst-case scenario is successive Fibonacci numbers, e.g. \[ gcd(89,55) \] Using the fact that \[ F(n) = \text{Round}\left(\frac{\phi^n}{\sqrt(5}\right) \] for all \(n \ge 1\), we can get a tighter bound on \(E(n)\): \[ E(n) \le \text{Round}\left[\log _{\phi }\left(\sqrt{5} a\right)\right]-2 \] where \(\phi\) is the golden mean or ratio: \[ \phi = \frac{1+\sqrt{5}}{2} \]