UC Berkeley Group for User Interface Research
Updated November 17, 2000

Uses of Class
edu.berkeley.guir.lib.graphs.Graph

Packages that use Graph
edu.berkeley.guir.lib.graphs Some simple graph utilities. 
 

Uses of Graph in edu.berkeley.guir.lib.graphs
 

Methods in edu.berkeley.guir.lib.graphs with parameters of type Graph
 Path SearchBreadthFirst.search(Graph g, String strFrom, String strTo)
          Perform a breadth-first search on the graph, with the specified start and target nodes.
 Path SearchBidirBlind.search(Graph g, String strFrom, String strTo)
          Perform a bidirectional blind search on the graph, with the specified start and target nodes.
 Path GraphSearch.search(Graph g, String strFrom, String strTo)
          Perform a search on the graph, with the specified start and target nodes.
 Path SearchBidirBest.search(Graph g, String strFrom, String strTo)
          Perform a bidirectional Best search on the graph, with the specified start and target nodes.
 Path SearchBestFirst.search(Graph g, String strFrom, String strTo)
          Perform a best-first search on the graph, with the specified start and target nodes.
 Path SearchDepthFirst.search(Graph g, String strFrom, String strTo)
          Perform a depth-first search on the graph, with the specified start and target nodes.
 


Copyright Information