Skip to content
Advertisement

Sort an array with user defined datatype in java

This question is from geeksforgeeks :

Here’s the link: https://practice.geeksforgeeks.org/problems/find-all-pairs-whose-sum-is-x5808/1#

Q) Given two unsorted arrays A of size N and B of size M of distinct elements, the task is to find all pairs from both arrays whose sum is equal to X.

JavaScript

I have to sort the result in ascending order but the datatype for array here is user-defined (i.e. pair). So I am getting this error :

prog.java:100: error: bad operand types for binary operator ‘>’ if(arr[j]>arr[j+1]){ ^ first type: pair second type: pair 1 error

Please help me sort the array. Note: Time complexity should be O(nlogn)

Advertisement

Answer

Why use the custom sort when you can use built-in sort in Java list.

Just use list.sort(Comparator.comparing(p -> ((pair) p).first).thenComparing(p -> ((pair) p).second)); to sort the pair list.

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