Hey guys, i'm working on a problem where I have to sort large array of long long int ( array size of nearly 1000000). I've tried to do it with merge sort as it has a complexity of O(n*log(n)) in worst case but still getting TLE. So , is there's a most efficient way (time speaking) to sort all this data ? thank you :)
↧