Hacker News new | ask | show | jobs
by chii 3280 days ago
https://stackoverflow.com/questions/2571049/how-to-sort-in-p...

In place merge sort exists. It's hard to write tho

2 comments

Which decreases the space complexity but increases the time complexity.
No, the time complexity is the same: O(n log n). The author of the top answer links to his book, where you can find a proof of time complexity:

https://sites.google.com/site/algoxy/home/elementary-algorit...

...but it increases run time. It's fine not to care on hidden constants while analyzing algorithms, but not while using them in real life
This is beautiful. I will try to implement this once i'm at home ...