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

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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T17:09:58+00:00 2026-05-20T17:09:58+00:00

I have a hash map of a string and a vertex which is a

  • 0

I have a hash map of a string and a vertex which is a class.

I want to create a priority queue for an attribute distance of vertex class… How should I do it…

private final PriorityQueue Nodes ;
private HashMap<String,Vertex> c ;

I have to create a priority queue on all the members of the hashmap c according to the vertex.distance value…..

Please tell how should i do that as I always get compilation error on whatever I am trying….

  • 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-20T17:09:59+00:00Added an answer on May 20, 2026 at 5:09 pm

    Without knowing your implementation, I give the following answer:

    Looking at the javadoc, it appears that there is a constructor which accepts a Comparator. I suspect that what you need to do is create a comparator which corresponds to the vertex.distance value.

    So, for example (this is untested code. Treat it as pseudo code):

    class VertexComparator implements Comparator<Vertex>{
      public int compare(Vertex v1, Vertex v2){
        return v1.distance - v2.distance;
      }
    }
    

    After that create the Nodes like:

    PriorityQueue Nodes = new PriorityQueue(100, new VertexComparator());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create a Hash Map (or another structure, if you have any
I have the following object Node : private class Node implements Comparable<Node>(){ private String
I have a hash map table as below, HashMap<String, String> backUpCurency_values = new HashMap<String,
I have created a hash map in which each entry corresponds to 3 values
If I have the value foo , and a HashMap<String> ftw for which ftw.containsValue(foo)
I have the following code: Map<String, ObjectType> objectMap = new HashMap<String, ObjectType>(); for (ObjectType
In my spring application context file, I have something like: <util:map id="someMap" map-class="java.util.HashMap" key-type="java.lang.String"
I have some questions about Perl's map function. Specifically: How does %hash = map
I have a variable that is a linked hash map. Its like: message: something
I have intialized Hash map inside static block, I need to access the hashmap

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.