Starting from:

$25

CSE100-Lab 5 Radixsort Solved

In this assignment you will implement RadixSort. See the textbook for the pseudocode.

Input structure You are going to apply RadixSort to sort vectors. The input starts with an integer number which indicates the number of vectors to be sorted. Then vectors follow, one vector per line. Each vector consists of 10 numbers where each number has a value in {0,1,2,3}. Entries of a vector are separated by a space.

Output structure Output the sorted sequence of vectors, one per line. Vector i must appear before vector j in your output if and only if for some d ∈{1,2,...,10}, vector i is smaller than or equal to vector j on the dth entry, and the two vectors are equal for any of the first d−1 entries.

Examples of input and output

Input

5

3 3 3 3 3 2 2 2 2 2

2 3 2 2 2 2 2 2 2 2

1 3 0 0 2 1 0 0 0 0

1  3 0 0 2 2 0 0 0 0

2  3 2 1 2 2 2 2 2 2

Output

1;3;0;0;2;1;0;0;0;0;

1;3;0;0;2;2;0;0;0;0;

2;3;2;1;2;2;2;2;2;2;

2;3;2;2;2;2;2;2;2;2;

3;3;3;3;3;2;2;2;2;2;

More precisely, this output example has 6 lines since a “cout << endl;” call was made at the end of each of the first 5 lines; those are the only white characters.

More products