Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8524383
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T07:40:26+00:00 2026-06-11T07:40:26+00:00

I am testing the different sort methods (Selection, bubble insertion) and I am trying

  • 0

I am testing the different sort methods (Selection, bubble insertion) and I am trying to use Comparator at the same time.

So far I have two classes; Main and Selectionsort.

My main looks like this:

public class Main {

    /**
     * @param args
     */
    public static void main(String[] args) {
        String[] anArray = {"Ludo", "matador", "ChessTitan", "Rottefælden"};

        for (int i=0; i<anArray.length-1; i++) {
            for (int j=i+1; j<anArray.length; j++) {
                if (anArray[j].compareTo(anArray[i]) < 1) {

                    String temp = anArray[i];
                    anArray[i] = anArray[j];
                    anArray[j] = temp;

                }
            }

        }

        for (String string : anArray) {
            System.out.println(string);
        }
    }
}

And my selectionSort looks like this:

public class SelectionSort implements Comparator<String> {

    @Override
    public int compare(String o1, String o2) {      
        return o1.compareTo(o2);
    }
}

What I want to do is use my Comparator when I use selection sort.

How is this possible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T07:40:27+00:00Added an answer on June 11, 2026 at 7:40 am

    replace this line:

    if (anArray[j].compareTo(anArray[i]) < 1) {
    

    with this:

    if (comparator.compare(anArray[j],anArray[i]) < 1) {
    

    where comparator is an instance of the comparator you want to use.


    Since your Comparator has no state, you’ll probably want to assign it to a static final field.

    private static final Comparator<String> COMP = new SelectionSort();
    

    So now the above code would read

    if (COMP.compare(anArray[j],anArray[i]) < 1) {
    

    Here’s a solution for your last question. Create two overloaded static methods, one with a Comparator, one without, then also create a Comparator that uses the natural order (amazingly no such thing is available to my knowledge in the JDK). Something like this:

    private static final Comparator<? extends Comparable> NATURAL_ORDER = new Comparator<Comparable>() {
        @Override
        public int compare(final Comparable o1, final Comparable o2) {
            return o1.compareTo(o2);
        }
    };
    
    private static <T> Comparator<T> naturalOrder() {
        return (Comparator<T>) NATURAL_ORDER;
    }
    
    public static <T> void sort(final T[] array) {
        if (!Comparable.class.isAssignableFrom(array.getClass().getComponentType())) {
            throw new IllegalArgumentException(
                  "Array Component Type must implement Comparable");
        }
    
        sort(array, naturalOrder());
    }
    
    public static <T> void sort(final T[] array, final Comparator<? super T> comparator) {
        // implement sort here
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am testing my app in two different devices. My app is relies heavily
How can I use a different Android sdk and resolution simulator with testing use
I have been testing Jenkins CI, and now it is time to build a
I am testing different methods to initialise a large javascript array with zeros. So
On Windows, testing different OSes is made simple using VMs. Is there a simple
I asked a question about different testing frameworks yesterday. This question can be found
As a follow up to my previous question Testing on different version of Mac
I'm testing my pages in different browsers. Opera puts a vertical scroll bar on
I am testing my app on different devices and on the Motorola Razr the
I'm testing the behaviour of a Cassandra cluster with different configurations. One of them

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.