InterviewSolution
Saved Bookmarks
| 1. |
Reorder the following efficiencies from smallest to largest: |
|
Answer» The ORDER of the efficiencies is as following:-10,000 < 2n < nlog(n) < N5 < n!.Explanation:2n this EFFICIENCY is linear it will grow proportionally as the size of the PROBLEM INCREASES |
|