Documentation
¶
Overview ¶
Package graph demonstates Graph search algorithms reference: https://en.wikipedia.org/wiki/Tree_traversal
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BreadthFirstSearch ¶
BreadthFirstSearch is an algorithm for traversing and searching graph data structures. It starts at an arbitrary node of a graph, and explores all of the neighbor nodes at the present depth prior to moving on to the nodes at the next depth level. Worst-case performance O(|V|+|E|)=O(b^{d})}O(|V|+|E|)=O(b^{d}) Worst-case space complexity O(|V|)=O(b^{d})}O(|V|)=O(b^{d}) reference: https://en.wikipedia.org/wiki/Breadth-first_search
func DepthFirstSearch ¶
Types ¶
Click to show internal directories.
Click to hide internal directories.