vote up 6 vote down star
1

Let's say that I have two arrays (in Java),

int[] numbers; and int[] colors;

Each ith element of numbers corresponds to its ith element in colors. Ex, numbers = {4,2,1} colors = {0x11, 0x24, 0x01}; Means that number 4 is color 0x11, number 2 is 0x24, etc.

I want to sort the numbers array, but then still have it so each element matches up with its pair in colors.

Ex. numbers = {1,2,4}; colors = {0x01,0x24,0x11};

What's the cleanest, simplest way to do this? The arrays have a few thousand items, so being in place would be best, but not required. Would it make sense to do an Arrays.sort() and a custom comparator? Using library functions as much as possible is preferable.

Note: I know the "best" solution is to make a class for the two elements and use a custom comparator. This question is meant to ask people for the quickest way to code this. Imagine being at a programming competition, you wouldn't want to be making all these extra classes, anonymous classes for the comparator, etc. Better yet, forget Java; how would you code it in C?

flag

10 Answers

vote up 0 vote down

You need to sort the colors array by its relative item in the numbers array. Specify a comparator that compares numbers and use that as the comparison for the colors array.

link|flag
vote up 3 vote down

Why not introduce an object to represent a number and a color and implement a comparator function for that?

Also, do you really need an array, why not use something derived from Collection?

link|flag
This situation comes up pretty often. I want to be able to code it quickly, without extra crud, for example in a programming competition. – jakepoz Sep 21 '08 at 21:37
vote up 3 vote down

It seems like the cleanest thing to do would be to create a custom property class that implements Comparable. For example:

class Color implements Comparable {
  private int number;
  private int color;

  // (snip ctor, setters, etc.)

  public int getNumber() {
    return number;
  }
  public int getColor() {
    return color;
  }

  public int compareTo(Color other) {
    if (this.getNumber() == other.getNumber) {
      return 0;
    } else if (this.getNumber() > other.getNumber) {
      return 1;
    } else {
      return -1;
    }
  }
}

Then you can separate your sorting algorithm from the ordering logic (you could use Collections.sort if you use a List instead of an array), and most importantly, you won't have to worry about somehow getting two arrays out of sync.

link|flag
Yeah, this is what you would do in a normal situation or applications. But at something like a programming competition where you need to code this quickly, I bet you wouldn't want to write this extra fluff. – jakepoz Sep 21 '08 at 21:41
On the contrary, this took me about a minute to write, which would be a lot less time than I would take trying to keep two arrays in sync, and convincing myself that I'd done it correctly. – Frank Pape Sep 21 '08 at 21:44
you should absolutely be making a custom class. That is by far the fastest way to do it. If it takes too long, invest in a learning how to use a good IDE. – ykaganovich Sep 22 '08 at 3:58
vote up 3 vote down

If you'd be willing to allocate some extra space, you could generate another array, call it extra, with elements like this:

extra = [0,1,...,numbers.length-1]

Then you could sort this extra array using Arrays.sort() with custom comparator (that, while comparing elements i and j really compares numbers[extra[i]] and numbers[extra[j]]). This way after sorting the extra array, extra[0] would contain the index of the smallest number and, as numbers and colours didn't move, the corresponding colour.
This isn't very nice, but it gets the job done, and I can't really think of an easier way to do it.

As a side note, in the competition I usually find the C++ templated pairs and nice maps indispensable ;)

link|flag
BTW, you need an array of Integer and not of int to be able to use a custom comparator. Fundamental types can only be sorted according to their natural order when you're limited to Arrays.sort. – Torsten Marek Sep 21 '08 at 22:04
Oh, sorry about it. I got a bit rusty with Java these days. – finrod Sep 21 '08 at 22:28
vote up 5 vote down

You could use sort() with a custom comparator if you kept a third array with the index, and sorted on that, leaving the data intact.

link|flag
This is the fastest way to do this... it's not clean, but it's the quickest to code. – Bill James Sep 21 '08 at 22:48
vote up 3 vote down

I like @tovare's solution. Make a pointer array:

int ptr[] = { 1, 2, 3 };

and then when you sort on numbers, swap the values in ptr instead of in numbers. Then access through the ptr array, like

for (int i = 0; i < ptr.length; i++)
{
   printf("%d %d\n", numbers[ptr[i]], colors[ptr[i]]);
}

Update: ok, it appears others have beaten me to this. No XP for me.

link|flag
vote up 1 vote down

Would it suffice to code your own sort method? A simple bubblesort would probably be quick to code (and get right). No need for extra classes or comparators.

link|flag
Memorizing Donald. D. Knuth/ The Art of Computer Programming volume 3 - sorting and searching and implementing the optimal algorithm on the fly would be ... impressive! :-) – tovare Sep 21 '08 at 22:22
vote up 2 vote down

One quick hack would be to combine the two arrays with bit shifts. Make an array of longs such that the most significant 32 bits is the number and the least significant 32 is the color. Use a sorting method and then unpack.

link|flag
vote up 0 vote down

The simplest way to do this in C, would be bubblesort + dual pointers. Ofcourse the fastest would be quicksort + two pointers. Ofcourse the 2nd pointer maintains the correlation between the two arrays.

I would rather define values that are stored in two arrays as a struct, and use the struct in a single array. Then use quicksort on it. you can write a generic version of sort, by calling a compare function, which can then be written for each struct, but then you already know that :)

link|flag
vote up 1 vote down

An example illustrating using a third index array. Not sure if this is the best implementation.


import java.util.*;

public class Sort {

    private static void printTable(String caption, Integer[] numbers, 
                Integer[] colors, Integer[] sortOrder){

        System.out.println(caption+
                "\nNo   Num   Color"+
                "\n----------------");

        for(int i=0;i<sortOrder.length;i++){
            System.out.printf("%x    %d     %d\n", 
                    i,numbers[sortOrder[i]],colors[sortOrder[i]]);

        }
    }


    public static void main(String[] args) {

        final Integer[] numbers = {1,4,3,4,2,6};
        final Integer[] colors  = {0x50,0x34,0x00,0xfe,0xff,0xff};
        Integer[] sortOrder = new Integer[numbers.length];

        // Create index array.
        for(int i=0; i<sortOrder.length; i++){
            sortOrder[i] = i;
        }
        printTable("\nNot sorted",numbers, colors, sortOrder);

        Arrays.sort(sortOrder,new Comparator<Integer>() {   
            public int compare(Integer a, Integer b){
                return numbers[b]-numbers[a];
            }});
        printTable("\nSorted by numbers",numbers, colors, sortOrder);

        Arrays.sort(sortOrder,new Comparator<Integer>() {   
            public int compare(Integer a, Integer b){
                return colors[b]-colors[a];
            }});
        printTable("\nSorted by colors",numbers, colors, sortOrder);
    }
}

The output should look like this:


Not sorted
No   Num   Color
----------------
0    1     80
1    4     52
2    3     0
3    4     254
4    2     255
5    6     255

Sorted by numbers
No   Num   Color
----------------
0    6     255
1    4     52
2    4     254
3    3     0
4    2     255
5    1     80

Sorted by colors
No   Num   Color
----------------
0    6     255
1    2     255
2    4     254
3    1     80
4    4     52
5    3     0
link|flag

Your Answer

Get an OpenID
or

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