|
|
|
|
|
by tim-peters
1800 days ago
|
|
Sorry, nope. There aren't n permutations you're searching through, but the factorial of n to search through. That's the heart of the information-theoretic proof that no comparison-based sorting algorithm can do better, on average, than needing a number of comparisons equal to the base-2 logarithm of the factorial of n. Which, as already said, is O(n log n). |
|
Edit: You are correct I made a mistake in my big O notation, it should be O(n log n).