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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T08:40:21+00:00 2026-05-30T08:40:21+00:00

They say that taking what someone said, and repeating it back is the best

  • 0

They say that taking what someone said, and repeating it back is the best form of verifying the basics of a concept (comprehension). So, I’ve been reading about A* and translated it into pseudocode, and I think I got it. Can anyone verify and/or give tips on whether or not this implementation would work?

Sorry if this is rushed, I’m on break at work 😉

openList.ClearTiles
closeList.clearTiles
path.clearTiles

openList.Add startTile

While openList.Count > 0 and PathFound = false
    activeTile = openList.GetTileWithLowestPathCost
    openList.remove activeTile
    closeList.add activeTile

    if targetTile.equals(activeTile)
       pathFound = true
    else
       for each activeTile.neighbors as nTile
           if nTile not in openList and not in closeList and IsMovable
              nTile.parent = activeTile
              nTile.hueristic = computeHeuristic
              nTile.movementCost = computeMovementCost
              nTile.pathCost = nTile.hueristic + nTile.movementCost

              openList.add nTile
           elseif isMovable = false
              closelist.add nTile
           endif
       next
    endif
endwhile

if pathFound = true        
   while activeTile.parent is not nothing
       path.insertAtZero activeTile
       activeTile = activeTile.parent
   endwhile
endif
  • 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-30T08:40:23+00:00Added an answer on May 30, 2026 at 8:40 am

    Well one major issue with your pseudo code and one minor issue.

    The major issue:

    When you find nTile, it might be in closed or in open already, and in your implementation – you ignore it and skip it. However, if it is in closed or open, you should check maybe the path cost you just found is better then the path cost which is in closed or open, and if it is, remove it from closed/open and re-insert it to open with the new path cost.

    The minor issue:

    Sometimes there is more then one target node [there is a set of target nodes, you are looking for a path to one of them]. So instead of if targetTile.equals(activeTile) you can check if heuristicValue(activeTile) == 0 [assuming the heuristic function is admissible] or check if activeTile is in targetStates.

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

Sidebar

Related Questions

In the Apple Docs, they say that NSDateFormatter uses the Unicode for spec. I've
when I read document about asyntask , they say that: should not update UI
Many people have argued about function size. They say that functions in general should
In the newest version of ADT (version 20 preview 3), they say that it's
This is the same question for older version of Scala, but they say that
I just want to show more than one Watch window. There, they say that
I have read a document that they say: In java there two types of
Say I have two Java apps that I wrote: Ping.jar and Pong.jar and they
Let's say we have two objects. Furthermore, let's assume that they really have no
I have four objects - for the sake of arguments, let say that they

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.