PHP 클래스 Trismegiste\Mondrian\Graph\BreadthFirstSearch

Uses the breadth first search method : shortest path and avoid cycle Note : this is my own algorithm, I find it ugly and not DRY
상속: extends Algorithm
파일 보기 프로젝트 열기: trismegiste/mondrian

보호된 프로퍼티들

프로퍼티 타입 설명
$stack

공개 메소드들

메소드 설명
searchPath ( Vertex $src, Vertex $dst )

보호된 메소드들

메소드 설명
recursivSearchPath ( SplObjectStorage $step, Vertex $dst )
resetVisited ( ) Reset visited state of edges

메소드 상세

recursivSearchPath() 보호된 메소드

protected recursivSearchPath ( SplObjectStorage $step, Vertex $dst )
$step SplObjectStorage
$dst Vertex

resetVisited() 보호된 메소드

Reset visited state of edges
protected resetVisited ( )

searchPath() 공개 메소드

public searchPath ( Vertex $src, Vertex $dst )
$src Vertex
$dst Vertex

프로퍼티 상세

$stack 보호되어 있는 프로퍼티

protected $stack