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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T02:39:01+00:00 2026-05-14T02:39:01+00:00

Forgive me if this is a tried question, but I’m having a little difficulty

  • 0

Forgive me if this is a tried question, but I’m having a little difficulty figuring it out.

I currently have a class Node, and each ‘node’ is a square in a maze. I’m trying to implement the A* algorithm, so each of these nodes will have an f-cost (int) data member inside of it. I was wondering if there’s a way that I can create a priority queue of these nodes, and set up the f-cost variable as the comparator?

I’ve looked at examples online, but all I can find are String priority queues. Can I implement Comparator for the Node class? Would this allow me to access the data member stored inside it?

Many Thanks!

  • 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-14T02:39:02+00:00Added an answer on May 14, 2026 at 2:39 am

    Absolutely.

    You can use a PriorityQueue based on an anonymous Comparator passed to the constructor:

    int initCapacity = 10;
    PriorityQueue<Node> pq = new PriorityQueue<Node>(initCapacity, new Comparator<Node>() {
        public int compare(Node n1, Node n2) {
            // compare n1 and n2
        }
    });
    // use pq as you would use any PriorityQueue
    

    If your Node class already implements Comparable you don’t even need to define a new Comparator, as that order will be used by default. Barring any other method, the natural ordering between objects will be used.

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

Sidebar

Related Questions

Forgive me if this is a repeated question but I am having trouble finding
please forgive me if this is a noob question, but i'm a beginner at
I know this is a very simple question for you experts,but please forgive me.Im
Please forgive me up front. When I've tried to research this question I end
Forgive me if this is a newbie question, but... When playing video, is it
You'll have to forgive me if this is a really basic question; I haven't
Forgive me if this is a newbie question - but sadly that's what I
Forgive me if this is a silly question but I'm afraid that I don't
Please forgive this noobster. I have tried using several tutorials for getting up and
I have tried going through this Question: How Does A Delegate Work and I

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.