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

The Archive Base Latest Questions

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

I have to store a close list for this I defined a Map –

  • 0

I have to store a close list for this I defined a Map –

Map<Node, Boolean> closeList = new HashMap<Node, Boolean>()

now for checking whether a node is exist in this map I use –

boolean binExists = closeList .containsKey(node)

seems that the value-boolean of the map is unnecessary .

Have you any better idea for this check using HashMap mode (O(1)) ?

  • 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-14T21:32:21+00:00Added an answer on June 14, 2026 at 9:32 pm

    A HashSet seems to be exactly what you need.

    Set<Node> closeSet = new HashSet<>();
    Node n1 = new Node();
    Node n2 = new Node();
    closeSet.add(n1);
    System.out.println(closeSet.contains(n1)); //true
    System.out.println(closeSet.contains(n2)); //false - though depending upon equals/hashcode implementation of Node
    

    Even though using a Set<Node> looks better than using a Map<Node, Boolean>, java.util.HashSet is using a HashMap internally in it’s implementation. If you need an implementation that uses less memory, you could for instance have a look at this implementation.

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

Sidebar

Related Questions

I have a jdialog and want close it on confirmation after that store the
I have a list of key/value pairs I'd like to store in and retrieve
I have this two functions: procedure TDisplay.CubAssign(VAR Obj: TCubObj; CONST bReleaseOnExit: boolean); begin ReleaseCubOnExit:=
I'm still new at this but I think I am close. My assignment is
In my GUI, I have a list store treeview in my main window. When
I have a list of various postal information. This data is within a mysql
I have a dictionary of list of dictionaries. Why did I pick this bizarre
I have store a sample document inside my local server named template.doc. Then I
I have to store a string (non-numeric, can contain any UTF8 Chars) in a
I have to store key value pairs in java which is more memory efficient

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.