/usr/include/ITK-4.5/itkLevelOrderTreeIterator.hxx is in libinsighttoolkit4-dev 4.5.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 | /*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#ifndef __itkLevelOrderTreeIterator_hxx
#define __itkLevelOrderTreeIterator_hxx
#include "itkLevelOrderTreeIterator.h"
namespace itk
{
/** Constructor with end level specification */
template< typename TTreeType >
LevelOrderTreeIterator< TTreeType >
::LevelOrderTreeIterator(TTreeType *tree, int endLevel, const TreeNodeType *start):
TreeIteratorBase< TTreeType >(tree, start)
{
m_StartLevel = -1;
m_EndLevel = endLevel;
if ( start != NULL )
{
m_Queue.push(start);
this->m_Position = const_cast< TreeNodeType * >( start );
}
else
{
if ( tree->GetRoot() )
{
m_Queue.push( dynamic_cast< const TreeNodeType * >( tree->GetRoot() ) );
this->m_Position = const_cast< TreeNodeType * >( dynamic_cast< const TreeNodeType * >( tree->GetRoot() ) );
}
}
this->m_Begin = this->m_Position;
}
/** Constructor with end level specification */
template< typename TTreeType >
LevelOrderTreeIterator< TTreeType >
::LevelOrderTreeIterator(TTreeType *tree, int startLevel, int endLevel, const TreeNodeType *start):
TreeIteratorBase< TTreeType >(tree, start)
{
m_StartLevel = startLevel;
m_EndLevel = endLevel;
if ( start != NULL )
{
m_Queue.push(start);
this->m_Position = const_cast< TreeNodeType * >( start );
}
else
{
if ( tree->GetRoot() )
{
m_Queue.push( dynamic_cast< const TreeNodeType * >( tree->GetRoot() ) );
this->m_Position = const_cast< TreeNodeType * >( dynamic_cast< const TreeNodeType * >( tree->GetRoot() ) );
}
}
this->m_Begin = this->m_Position;
}
/** Return the type of iterator */
template< typename TTreeType >
typename LevelOrderTreeIterator< TTreeType >::NodeType
LevelOrderTreeIterator< TTreeType >::GetType() const
{
return TreeIteratorBase< TTreeType >::LEVELORDER;
}
/** Return true if the next value exists */
template< typename TTreeType >
bool
LevelOrderTreeIterator< TTreeType >::HasNext() const
{
if ( const_cast< TreeNodeType * >( FindNextNode() ) )
{
return true;
}
return false;
}
/** Return the next node */
template< typename TTreeType >
const typename LevelOrderTreeIterator< TTreeType >::ValueType &
LevelOrderTreeIterator< TTreeType >::Next()
{
this->m_Position = const_cast< TreeNodeType * >( FindNextNode() );
return this->m_Position->Get();
}
/** Get the start Level */
template< typename TTreeType >
int LevelOrderTreeIterator< TTreeType >::GetStartLevel() const
{
return m_StartLevel;
}
/** Get the end level */
template< typename TTreeType >
int
LevelOrderTreeIterator< TTreeType >::GetEndLevel() const
{
return m_EndLevel;
}
/** Find the next available node */
template< typename TTreeType >
const typename LevelOrderTreeIterator< TTreeType >::TreeNodeType *
LevelOrderTreeIterator< TTreeType >::FindNextNode() const
{
int level;
const TreeNodeType *node;
do
{
node = FindNextNodeHelp();
if ( node == NULL )
{
return NULL;
}
level = GetLevel(node);
if ( level > m_EndLevel )
{
return NULL;
}
}
while ( level < m_StartLevel );
return node;
}
/** Return the current level */
template< typename TTreeType >
int
LevelOrderTreeIterator< TTreeType >::GetLevel() const
{
if ( this->m_Position == NULL )
{
return -1;
}
int level = 0;
TreeNodeType *node = this->m_Position;
while ( node->HasParent() && node != this->m_Root )
{
node = dynamic_cast< TreeNodeType * >( node->GetParent() );
level++;
}
return level;
}
/** Return the level given a node */
template< typename TTreeType >
int
LevelOrderTreeIterator< TTreeType >::GetLevel(const TreeNodeType *node) const
{
if ( node == NULL )
{
return -1;
}
int level = 0;
while ( node->HasParent() && node != this->m_Root )
{
node = dynamic_cast< const TreeNodeType * >( node->GetParent() );
level++;
}
return level;
}
/** Helper function to find the next node */
template< typename TTreeType >
const typename LevelOrderTreeIterator< TTreeType >::TreeNodeType *
LevelOrderTreeIterator< TTreeType >::FindNextNodeHelp() const
{
if ( m_Queue.empty() )
{
return NULL;
}
const TreeNodeType *currentNode = m_Queue.front();
m_Queue.pop();
if ( currentNode == NULL )
{
return NULL;
}
int size = currentNode->CountChildren();
for ( int i = 0; i < size; i++ )
{
TreeNodeType *child = dynamic_cast< TreeNodeType * >( currentNode->GetChild(i) );
if ( child != NULL )
{
m_Queue.push(child);
}
}
// If the current node is the root we try again
if ( currentNode == this->m_Root )
{
currentNode = const_cast< TreeNodeType * >( FindNextNodeHelp() );
}
return currentNode;
}
/** Clone function */
template< typename TTreeType >
TreeIteratorBase< TTreeType > *LevelOrderTreeIterator< TTreeType >::Clone()
{
LevelOrderTreeIterator< TTreeType > *clone =
new LevelOrderTreeIterator< TTreeType >(const_cast< TTreeType * >( this->m_Tree ), m_StartLevel, m_EndLevel);
*clone = *this;
return clone;
}
} // end namespace itk
#endif
|