Giter Club home page Giter Club logo

astar-search-algorithm's People

Contributors

rcnewman avatar wontonst avatar

Watchers

 avatar

astar-search-algorithm's Issues

sort infinite loop

sort goes through states

1001
1010
1011
1101

on clock 50 something did_swap is set to 1 and never goes down. i ran it for 1 million clocks. please fix asap

data structure parent node

@rcnewman I need a way to store another node in a node
it should be two array 40x40x8 so we can store an x and y coordinate in each node. not sure how to implement 3D arrays, we could do
reg 40 parentnodex00 8
...
reg 40 parentnodex39 8

then somehow retrieve the right node

case(nodenum)
0: parentnode00
..
39: parentnode39

Confused.

fml factory project............

Cannot compile sort.v

** Error: C:/Users/RoyZheng/Desktop/CompSci/git/astar-search-algorithm/sort.v(927): near "end": syntax error, unexpected end

reconstructPath function

private ArrayList reconstructPath(Node node) {
ArrayList path = new ArrayList();
while(!(node.getPreviousNode() == null)) {
path.add(0,node.getPoint());
node = node.getPreviousNode();
}
this.shortestPath = path;
return path;
}

SORT STATE TRANSITIONS

started testing today. your sort algorithm does not have state transitions. please add them.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.