Skip to content
Advertisement

Sort 2D array by average value of each line

I have complex task to differently sort two dimensional array manually. So far I get done those tasks:

  1. User needs to input row size from 10 – 20,

  2. Generate 2D array where row size is user input and column size is randomly generated from 10-50,

  3. Each array is filled with randomly generated numbers from 100 – 999,

  4. Output each array row by its descending value,

  5. Output average value of each array line,

  6. Output on screen array with biggest average value,

  7. So far I can’t solve task Nr. 7. Output sorted two dimensional array by each lines average value. Tried to implement new arrayAverage in loop to sort lines it didn’t work. Array just need to be sorted without creating new array.

JavaScript

Advertisement

Answer

The part of your code that calculates the average:

JavaScript

is slightly wrong, you need to set the average variable to zero before calculating the average of the next rows:

JavaScript

With the Java Streams one can get the matrix sorted by average of rows pretty elegantly, namely:

JavaScript

To sort the array one uses the method Arrays.sort, and then for each row one gets its average as a double value IntStream.of(row).average().getAsDouble(), and used as the sorting parameter comparingDouble(....).

A running example:

JavaScript

The output:

JavaScript

For the reverse order use instead:

JavaScript

The output:

JavaScript

EDIT: WITH NO STREAMS

Without using streams what you can do is the following:

1 – Get the array with the averages of the matrix rows:

JavaScript

You already know how to calculate the average, therefore you just need to extract a method out of the code that you have created, namely:

JavaScript

2 – Create an array that will represent the rows and initialized as the following:

JavaScript

3 – Sort the arrayAverage using the easiest sort, the bubble sort. While sorting that array update accordingly the positions stored on the row_position:

JavaScript

4 – Now that you have the row_positions array that tells you how the sorted rows should be rearranged, you just need to swap the rows accordingly:

JavaScript

Bear in mind, however, that for simplicity-sake I have assumed a quadratic matrix of NxN, and the above solution can be improved performance-wise.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement