Match the following algorithms with their worst-case time complexities.
Show Hint
Remember the standard worst-case complexities:
\[
\text{Linear Search} = O(n)
\]
\[
\text{Binary Search} = O(\log n)
\]
\[
\text{Selection Sort} = O(n^2)
\]
These are among the most frequently asked complexities in competitive exams and interviews.