Jump to content

Hierarchical visitor pattern: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m {{comp-sci-stub}}
Link to Visitor pattern.
Line 1: Line 1:
In [[software engineering]], the '''hierarchical visitor pattern''' is one of [[design pattern (computer science)|design patterns]] that intend to provide a way to visit every node in the hierarchical [[data structure]] such as a [[tree data structure|tree]].
In [[software engineering]], the '''hierarchical visitor pattern''' is one of [[design pattern (computer science)|design patterns]] that intend to provide a way to visit every node in the hierarchical [[data structure]] such as a [[tree data structure|tree]].


==External links==
== See also ==
* [[Visitor pattern]]
* [http://c2.com/cgi/wiki?HierarchicalVisitorPattern c2 wiki: Hierarchical visitor pattern]


== External links ==
* [http://c2.com/cgi/wiki?HierarchicalVisitorPattern c2 wiki: Hierarchical visitor pattern]


{{comp-sci-stub}}
{{comp-sci-stub}}

Revision as of 19:40, 3 August 2005

In software engineering, the hierarchical visitor pattern is one of design patterns that intend to provide a way to visit every node in the hierarchical data structure such as a tree.

See also