MantisBT - VTK
View Issue Details
0010495VTK(No Category)public2010-03-31 10:322013-04-05 19:59
David Doria 
Jeff Baumes 
normalfeatureN/A
closedfixed 
 
 
0010495: vtkTreeBFSIterator
I wrote a class to iterate over a tree in a breadth first fashion. It is identical to vtkTreeDFSIterator, but by switching the stack to a queue, you achieve a BFSIterator:

http://github.com/daviddoria/vtkTreeBFSIterator [^]
No tags attached.
Issue History
2010-03-31 10:32David DoriaNew Issue
2010-03-31 10:39Jeff BaumesStatusbacklog => tabled
2010-03-31 10:39Jeff BaumesAssigned To => Jeff Baumes
2010-08-04 11:15Jeff BaumesNote Added: 0021636
2010-08-04 11:15Jeff BaumesStatustabled => @80@
2010-08-04 11:15Jeff BaumesResolutionopen => fixed
2011-06-16 13:11Zack GalbreathCategory => (No Category)
2013-04-05 19:59Berk GeveciStatuscustomer review => closed

Notes
(0021636)
Jeff Baumes   
2010-08-04 11:15   
commit a41c00b21db8bfc8aa97d8bacbf6708cb779db41
Author: Jeffrey Baumes <jeff.baumes@kitware.com>
Date: Wed Aug 4 11:12:33 2010 -0400

    Adding tree BFS iterator.
    
    Contributed by David Doria.

 Filtering/CMakeLists.txt | 1 +
 Filtering/Testing/Cxx/CMakeLists.txt | 1 +
 Filtering/Testing/Cxx/TestTreeBFSIterator.cxx | 56 ++++++
 Filtering/vtkTreeBFSIterator.cxx | 240 +++++++++++++++++++++++++
 Filtering/vtkTreeBFSIterator.h | 111 ++++++++++++
 5 files changed, 409 insertions(+), 0 deletions(-)