Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sorting a partially sorted array [duplicate]

Possible Duplicate:
Interview Q: sorting an almost sorted array (elements misplaced by no more than k)

I have a partially sorted array with the property that every element is within d units of its properly sorted position. I am wondering if there is a way to sort this array -- by exploiting this fact -- in less than n log n time.

like image 244
Schemer Avatar asked Jul 21 '11 04:07

Schemer


People also ask

Which sort is best for partially sorted array?

​Many sorting algorithms are available, but the one which is best suited for the almost sorted array is the insertion sort.

How do you sort Half an array?

Sort the given array. Run a loop up to half the length of the array and print the elements of the sorted array. Run a loop from the last index of the array to the middle of the array and print the elements in reverse order.

Which sorting technique will you use to sort an already sorted array with only 2 middle numbers unsorted should be efficient?

We can use Insertion Sort to sort the elements efficiently.


1 Answers

Off the top of my head...

Create a "sliding window" of size 2d.

Start it at [0,2d). Sort the elements in the window; now elements 0 through d-1 are guaranteed to be correct.

Slide the window forward by d, so now it's [d,3d). Sort those elements, guaranteeing that elements d through 2d-1 are correct.

Slide it forward another d, so now its [2d,4d). Sort those. And so on.

Each sort is O(d log d), and it takes n/d steps to get to the end, so this is O(n/d * d log d) = O(n log d). If d is constant, that's O(n).

[edit]

You make a good point in a comment; I did not prove that each iteration preserves the property that every element is within d units of its proper position.

So...

Lemma: If A is an array with the property that every element is within d units of its proper position, and you sort any contiguous subsequence within A to create an array A', then every element in A' is within d units of its proper position.

Proof: Since this is a lemma about the properties of a sort (not performance), it does not matter what algorithm we use to sort. So use bubble sort. Find any two elements in the subsequence that are out of order, and swap them. There are only three cases: Both elements are before their proper positions in the array; both are after their proper positions in the array; or they are between their proper positions in the array.

For example, suppose A[i] belongs at position i' and A[j] belongs at position j', i < j, but A[i] > A[j]. It follows that i' > j' (because that is where the elements "belong", and A[i] > A[j]). Case 1: Suppose i' and j' are both greater than i and j; that is, the order goes i < j < j' < i'. But by hypothesis, i' is only d units from i, so this entire range is only d units wide at most. So j is also within d units of i' and i is within d units of j', so when we swap A[i] with A[j], both elements are still within d of where they belong. The analysis for Case 2 and Case 3 are similar.

So each step of a bubble sort -- on any subsequence of A -- will preserve the desired property, from which it follows that the entire bubble sort will preserve the desired property, from which it follows that any sort will preserve the desired property. Q.E.D.

like image 70
Nemo Avatar answered Sep 28 '22 07:09

Nemo