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 8864803
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T16:20:38+00:00 2026-06-14T16:20:38+00:00

I have 3 lists so the order of their elements is important: names: [a,

  • 0

I have 3 lists so the order of their elements is important:

names: [a, b, c, d]
files: [a-file, b-file, c-file, d-file]
counts: [a-count, b-count, c-count, d-count]

I need to sort all of them alphabetically based on the List<String> names elements.
Can someone explain me how 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-14T16:20:39+00:00Added an answer on June 14, 2026 at 4:20 pm

    Create a class to hold the tuple:

    class NameFileCount {
        String name;
        File file;
        int count;
    
        public NameFileCount(String name, File file, int count) {
            ...
        }
    }
    

    Then group the data from the three lists into a single list of this class:

    List<NameFileCount> nfcs = new ArrayList<>();
    for (int i = 0; i < names.size(); i++) {
        NameFileCount nfc = new NameFileCount(
            names.get(i),
            files.get(i),
            counts.get(i)
        );
        nfcs.add(nfc);
    }
    

    And sort this list by name, using a custom comparator:

    Collections.sort(nfcs, new Comparator<NameFileCount>() {
        public int compare(NameFileCount x, NameFileCount y) {
            return x.name.compareTo(y.name);
        }
    });
    

    (Property accessors, null checking, etc omitted for brevity.)

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

Sidebar

Related Questions

I have a SQL Server 2005 table which lists customers and their order lines
I have a series of label elements that I want to sort by their
Possible Duplicate: Natural Sort Order in C# I have a list with a lot
I have 35 pages list of scientific references. In order to upload them to
I have one form with several components, some of them have their own validations
Possible Duplicate: Sort a list of tuples by their second elements Hey there i
I have an iframe; That points to a .php file and I need the
We have a series of drop down controls that determine the sort order of
I need to merge two doubly-linked lists, but not by their values (the lists
I have to show a list of divs in a seamless order, thought their

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.