Width:
Height:
Velocity:
Start Node
Target Node
Wall Node
Key Terms
Graph
A data structure that represents relationships or connections between nodes (also called vertices) through edges (also called links or arcs). Graphs can be used to model various types of structures such as social networks, transportation systems, and computer networks.
Node (Vertex)
A fundamental unit of a graph that represents an entity, such as a person, place, or thing. Nodes are connected by edges to represent relationships or associations between entities.
Edge (Link)
A connection between two nodes in a graph that represents a relationship or association between the entities represented by the nodes. Edges can be directed or undirected, and can also have weights to represent the strength or cost of the connection.
Directed Graph
A graph where edges have a direction, indicating an asymmetric relationship between nodes. In a directed graph, each edge has an initial node (tail) and a terminal node (head).
Undirected Graph
A graph where edges do not have a direction, indicating a symmetric relationship between nodes. In an undirected graph, an edge simply connects two nodes without any specific direction.