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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T02:46:16+00:00 2026-05-16T02:46:16+00:00

How can I improve performance of this chunk of code ? What would be

  • 0
  1. How can I improve performance of
    this chunk of code ?
  2. What would be unit test case for the given problem statement ?

Code:

    public class SlowDictionary {
        private final Map<String,String> dict = new HashMap<String,String>();
        public synchronized String translate (String word)
        throws IllegalArgumentException {
            if (!dict.containsKey(word)) {
                throw new IllegalArgumentException(word + " not found.");
            }
            return dict.get(word);
        }

        public synchronized void addToDictionary (String word, String translation) 
            throws IllegalArgumentException {
            if (dict.containsKey(word)) {
                throw new IllegalArgumentException(word + " already exists.");
            }
            dict.put(word,translation);
        }

        public synchronized Set<String> getAllWords () {    
            return dict.keySet();
        }
    }
  • 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-16T02:46:17+00:00Added an answer on May 16, 2026 at 2:46 am

    First thing you want to do is get rid of all synchronized key words.

    The easiest way of doing that is be declaring dict to be a ConcurrentHashMap:

    private final ConcurrentMap<String,String> dict = new ConcurrentHashMap<String,String>();
    

    Doing this you can immidiatly remove the synchronized part of translate so it would look like:

     public String translate (String word) throws IllegalArgumentException { ..
    

    The reason for this is the contract in which the CCHM holds regarding up to date reads.

    Finally, add to dictionary can look like:

     public void addToDictionary (String word, String translation) throws IllegalArgumentException {
                if (dict.putIfAbsent(word,translation)!=null) {
                    throw new IllegalArgumentException(word + " already exists.");
                }
            }
    

    Also remove synchronized from getAllWords as well.

    Edit: After thinking about tom’s comment. Having a double look up in this ‘exception case’ probably isnt worth it. If the case didnt throw an exception then it would be appropriate.

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

Sidebar

Related Questions

I have an idea of how I can improve the performance with dynamic code
I'm looking for some help converting as3 code to pixelbender code in an attempt
I have a few large (~600k lines of code) Delphi projects. They include some
I'm having problems with low performance using a Windows named pipe. The throughput drops
I'm intersecting some sets of numbers, and doing this by storing a count of
I have a large project in C# (.NET 2.0) which contains very large chunks
I had prepared a project on making a software application. It is complete and
we have a database table which has around 200,000 records. which includes 3 ntext
I recently read the excellent article The Transactional Memory / Garbage Collection Analogy by

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.