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

  • SEARCH
  • Home
  • 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 7847965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T18:03:22+00:00 2026-06-02T18:03:22+00:00

I need to implement the following function. I’m open to using the best class,

  • 0

I need to implement the following function. I’m open to using the best class, but I’m not sure whether I should use SortedSet or TreeSet (as in Set myEmailsAscending = new TreeSet(new DateAscendingComparator()); // emails are always in ascending order).

public void addEmail(Email email)//The prototype isn't to be altered.
{
Comparator comp;
if(getCurrentSortingMethod()=="DateDescending") comp=DateDescendingComparator;
else if(getCurrentSortingMethod()=="DateAscending") comp=DateAscendingComparator;
...//other comparators

int index = Collections.binarySearch(getEmails(), email, new comp());// Search where to insert according to the current sorting method.
getEmails().add(-index-1, email);}// Add the item to the list
}

Is that the proper syntax to choose comparator?
I’d like to avoid creating multiple Comparator classes so is there a way to do this?

  • 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-02T18:03:22+00:00Added an answer on June 2, 2026 at 6:03 pm

    There are several issues:

    You should use equals() for string comparison and not ==.

    The usage of new is wrong. I’d suggest the following:

    Comparator comp;
    if (getCurrentSortingMethod().equals("DateDescending")) {
       comp = new DateDescendingComparator();
    } else if (getCurrentSortingMethod().equals("DateAscending")) {
       comp = new DateAscendingComparator();
    } ...
    
    int index = Collections.binarySearch(getEmails(), email, comp);
    

    Note how the new has been moved inside the if blocks.

    As an alternative to all this, you could use a SortedSet<Email> with the appropriate comparator. The set will be automatically kept sorted in the correct order.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to IMPLEMENT(not to use some library/open source) an event/message system. I have
we need to implement the following query in such a way that we should
I'm trying to implement a Search-Function using c++ and libpqxx. But I've got the
I'm trying to implement the following operation in Java and am not sure how:
I am following the official tutorial to implement the FB credits but its not
I need to implement the following pattern in php: class EventSubscriber { private $userCode;
I need to implement a couple of functions which comply with the following: function
I've written the following function to implement a timeout feature using NetworkStream 's asynchronous
I need to implement a hash table and hash function using JavaScript. The goal
I need to implement the overloaded the assignment operator in a class so the

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.