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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T19:05:47+00:00 2026-05-25T19:05:47+00:00

I need some kind of data structure don’t know yet which would be most

  • 0

I need some kind of data structure don’t know yet which would be most suitable.

Here is what I’m working with: I have a bunch rows of data processing and each row has its own country code.

I want to obtain as result how many times each country code repeats throughout the process.

  • 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-05-25T19:05:47+00:00Added an answer on May 25, 2026 at 7:05 pm

    You might try a HashMap. With a HashMap, you can use the country code as the key, and the count of how many times each appears as the value stored in that key. If you encounter a particular country code for the first time, insert it into the map with an initial value of 1; otherwise, increment the existing value.

    HashMap<String, Integer> myMap = new HashMap<String, Integer>();
    
    for (... record : records) {
        String countryCode = record.getCountryCode();
    
        int curVal;
        if (myMap.containsKey(countryCode)) {
            curVal = myMap.get(countryCode);
            myMap.put(countryCode, curVal + 1);
        } else {
            myMap.put(countryCode, 1);
        }
    }
    
    // myMap now contains the count of each country code, which
    // can be used for whatever purpose needed.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to know what kind of data structure (queue) I should use
I need some kind of dialog for browsing the local SMB network for file
I need some kind of priority queue to store pairs <key, value> . Values
I need to do testing on clean machines frequently so I need some kind
I have a problem: imagine I have a plugin-based system. I need some kind
I have a need for some kind of information that is in essence static.
I need to implement some kind of metric space search in Postgres(*) (PL or
I need to include some kind of notifications in a sidebar gadget, preferably systray
Do you need to use some kind of provider? Can you setup your own
I need some advice on what kind of pattern(s) I should use for pushing/pulling

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.