Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to turn an array like this:

0, 1, 2, 2, 1, 0, 1, 0, 0, 1, 2

into this:

0 0 0 0 1 1 1 1 2 2 2

Here is my code:

public static int[] sortDNF(int[] tape) {
	int smaller = 0; // everything with index < smaller is 0
	int bigger = tape.length - 1; // everything with index > bigger is 2
	int current = 0; // where we are looking now
	int tmp;

	while (current <= bigger) {
		if (tape[current] == 0) {
			tmp = tape[smaller];
			tape[smaller] = tape[current];
			tape[current] = tmp;
			smaller++;
		}
		if (tape[current] == 2) {
			tmp = tape[bigger];
			tape[bigger] = tape[current];
			tape[current] = tmp;
			bigger--;
		}
		current++;
	}

	return tape;
}

This is what it produces:

 0  0  0  1  1  1  1  0  2  2  2

What is my problem?

share|improve this question
7  
For people like me who have no clue what that's about, here's a wikipedia link: en.wikipedia.org/wiki/Dutch_national_flag_problem – ChssPly76 Nov 18 '09 at 21:25
1  
Maybe I'm missing something, but doesn't the result of sort() always satisfy these criteria? – Cory Petosky Nov 18 '09 at 21:28
I just had to check that my self... can't see the catch – Gareth Davis Nov 18 '09 at 21:31
I suggest to debug your code in order to see by yourself why it fails. Although you should ask yourself why you are implementing a sorting algorithm when Java comes with its own? – Auron Nov 18 '09 at 21:33
This question is about DNF, not about sorting in general. – candiru Nov 18 '09 at 21:35

7 Answers

up vote 4 down vote accepted

A guess:

You should not be increasing current every time through the loop since that is supposed to represent the partition between the 1's and the unknowns. For example, when you hit the first 2 you end up swapping it with another 2 and then moving on. The fact that the 2 later gets swapped for a 0 is accidental. The elements between smaller and current should always be 1's and that is broken.

current++ should only be done in the tape[current] != 2 case. It's ok to do it when tape[current] = 0 because you haven't changed the [smaller -> current] = 1-only condition. And it's ok to move it when tape[current] = 1 because that satisfies the 1-only condition.

...but I haven't tried it.

share|improve this answer
This is correct. The only case to be careful of is that you DO increment (when current == smaller and swapping a smaller, or current == bigger and swapping a bigger) -- in that case the swap is 'idempotent' and you must increment current. In the case where the swap is 'potent', if you increment current you will never examine the value which you just swapped into the 'current' location. – Heath Hunnicutt Nov 18 '09 at 21:48
Hmmm... if you always increment current when swapping a smaller that should cover your first case. I'm not sure you need to increment when current == bigger and swapping a bigger because bigger will already be decremented allowing the loop to exit. The swap was technically unnecessary but it makes the code simpler. Unless I've missed some other issue. – PSpeed Nov 18 '09 at 22:23

For those who haven't studied the problem, sorting is sufficient to provide a solution, but it is (or can be) more than necessary. Solving the DNF problem only requires that all like items be moved together, but you don't have to place unequal items in any particular order.

It's pretty easy to solve DNF with expected O(N) complexity, where (most normal forms of) sorting have O(N lg N) complexity. Instead of rearranging the input elements, it's much easier to simply count the elements with any given value, then print out the right number of each. Since the order of unequal elements doesn't matter, you normally store your counts in a hash table.

share|improve this answer
Just one thing, DNF is to be solved in Theta(N), not O(N). Otherwise, a two-pass counting sort would be the solution. – Heath Hunnicutt Nov 18 '09 at 21:49
@Heath: at least to me, your comment makes little sense. Big theta has the same upper-bound requirements as big-O, but also adds an asymptotic lower-bound requirement. That does nothing to disqualify the two-pass counting algorithm. – Jerry Coffin Nov 18 '09 at 22:21
I don't want to print it; I want to actually sort the array in one pass. – Rosarch Nov 19 '09 at 1:46

The problem is that you reply on (possible nonexistent) values later in the chain to swap incorrectly skipped 1 values, try your algo on the trivial case of:

1 2 0

the 2 gets swapped in the right spot, but the current index has been advanced over the index 0 ends up in resulting in:

1 0 2

So don't increment current before you inspect the new value at that index.

share|improve this answer

You need to increment current only during the check for 1 and check for 2. When you are checking for 3 you just need to decrement bigger. Here the working solution. BTW this works for the array of values between 1-3. You can change it to 0-2 if you so wish.

The program produces the following output given a random number array as follows:

Original Array : [1, 3, 3, 3, 2, 2, 2, 1, 2, 2, 1, 3, 3, 2, 1, 1, 3]

Sorted Array : [1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3]

private static int[] sortUsingDutchNationalFlagProblem(int[] array) 
{
    System.out.println("Original Array : " + Arrays.toString(array));
    int smaller = 0;    // everything with index < smaller is 1
    int bigger  = array.length - 1; // everything with index > bigger is 3
    int current = 0;        // where we are looking now
    int tmp;
    while (current <= bigger) {
            if (array[current] == 1) {
                    tmp            = array[smaller];
                    array[smaller] = array[current];
                    array[current] = tmp;
                    smaller++;current++;
            }
            if(array[current] == 2)
                current++;
            if (array[current] == 3) {
                    tmp            = array[bigger];
                    array[bigger]  = array[current];
                    array[current] = tmp;
                    bigger--;
            }
    }
    System.out.println("Sorted Array   : " + Arrays.toString(array));
    return array;
}
share|improve this answer
public static int[] sortDNF(int[] tape) {
    int smaller = 0; // everything with index < smaller is 0
    int bigger = tape.length - 1; // everything with index > bigger is 2
    int current = 0; // where we are looking now
    int tmp;

    while (current <= bigger) {
            if (tape[current] == 0) {
                    tmp = tape[smaller];
                    tape[smaller] = tape[current];
                    tape[current] = tmp;
                    smaller++;
            }
            else if (tape[current] == 2) {
                    tmp = tape[bigger];
                    tape[bigger] = tape[current];
                    tape[current] = tmp;
                    bigger--;
            }
            current++;
    }

    return tape;
}
share|improve this answer
This code is wrong. There are some bugs in it. – Ajeet Sep 7 '11 at 2:39

I'm going to propose an easier solution :-)

public static int[] sortDNF(int[] tape) {
  Arrays.sort(tape);
  return tape;
}

As far as what's wrong with your solution, when the current element is 2 and it's swapped with the element near the end of the list, the element it's swapped with may not be 2, but you're incrementing current and not looking at this position again.

share|improve this answer
1  
As you read on Wikipedia, the correct answer has &theta;(n) run-time not O(n log n). – Heath Hunnicutt Nov 18 '09 at 21:33
Expect that it uses "tuned quicksort adapted from Jon L. Bentley and M. Douglas McIlroy's" algo under the hood :-) – BalusC Nov 18 '09 at 21:36
This solution is easier in precisely the same way bubble sort is easier. – Kevin Nov 18 '09 at 22:00
@Kevin - that's why there's a smile after it. I've replied to the question explaining what I think is wrong with OP's code. – ChssPly76 Nov 18 '09 at 22:05

How about Quicksort.

share|improve this answer
Bah, too easy. Bozo Sort FTW! Or actually a radix sort is a better choice since we're dealing with integers. – Juliet Nov 18 '09 at 21:34
Counting sort seeing as the range is 3. – Mark Byers Nov 18 '09 at 21:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.