Skip to Content
Hands-On Artificial Intelligence with Java for Beginners
book

Hands-On Artificial Intelligence with Java for Beginners

by Nisheeth Joshi
August 2018
Beginner
144 pages
3h 6m
English
Packt Publishing
Content preview from Hands-On Artificial Intelligence with Java for Beginners

Implementing an A* algorithm

We will now look at how to implement an A* algorithm. Let's start with the code. We will use the same code that we used in the Dijkstra's search algorithm. The Vertex.java file is as follows:

public class Vertex {    final private String id;    final private String name;    public Vertex(String id, String name) {        this.id = id;        this.name = name;    }// public String getId() {// return id;// }//// public String getName() {// return name;// }    @Override    public int hashCode() {        final int prime = 31;        int result = 1;        result = prime * result + ((id == null) ? 0 : id.hashCode());        return result;    }    @Override    public boolean equals(Object obj) {        if (this == obj)            return true;        if (obj == null)            return false; if (getClass() != obj.getClass()) ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Machine Learning: End-to-End guide for Java developers

Machine Learning: End-to-End guide for Java developers

Richard M. Reese, Jennifer L. Reese, Boštjan Kaluža, Dr. Uday Kamath, Krishna Choppella
Mastering Java Machine Learning

Mastering Java Machine Learning

Uday Kamath, Krishna Choppella

Publisher Resources

ISBN: 9781789537550Supplemental Content