/usr/include/CGAL/Kd_tree_node.h is in libcgal-dev 4.2-5ubuntu1.
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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 | // Copyright (c) 2002,2011 Utrecht University (The Netherlands).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
// You can redistribute it and/or modify it under the terms of the GNU
// General Public License as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
//
// Licensees holding a valid commercial license may use this file in
// accordance with the commercial license agreement provided with the software.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
//
// $URL$
// $Id$
//
//
// Authors : Hans Tangelder (<hanst@cs.uu.nl>)
#ifndef CGAL_KD_TREE_NODE_H
#define CGAL_KD_TREE_NODE_H
#include <CGAL/Splitters.h>
#include <CGAL/Compact_container.h>
namespace CGAL {
template <class SearchTraits, class Splitter, class UseExtendedNode>
class Kd_tree;
template < class TreeTraits, class Splitter, class UseExtendedNode >
class Kd_tree_node {
friend class Kd_tree<TreeTraits,Splitter,UseExtendedNode>;
typedef typename Kd_tree<TreeTraits,Splitter,UseExtendedNode>::Node_handle Node_handle;
typedef typename Kd_tree<TreeTraits,Splitter,UseExtendedNode>::Node_const_handle Node_const_handle;
enum Node_type {LEAF, INTERNAL, EXTENDED_INTERNAL};
typedef typename TreeTraits::Point_d Point_d;
typedef typename TreeTraits::FT FT;
typedef typename Kd_tree<TreeTraits,Splitter,UseExtendedNode>::Separator Separator;
typedef typename Kd_tree<TreeTraits,Splitter,UseExtendedNode>::Point_d_iterator Point_d_iterator;
private:
// node type identifier
Node_type the_node_type;
// private variables for leaf nodes
unsigned int n; // denotes number of items in a leaf node
Point_d_iterator data; // iterator to data in leaf node
// private variables for internal nodes
Node_handle lower_ch, upper_ch;
Separator sep;
// private variables for extended internal nodes
FT low_val;
FT high_val;
public:
void * for_compact_container() const { return lower_ch.for_compact_container(); }
void * & for_compact_container() { return lower_ch.for_compact_container(); }
// default constructor
Kd_tree_node()
{}
Kd_tree_node(Node_type t )
: the_node_type(t)
{}
Kd_tree_node(unsigned int n_, Node_type t )
: the_node_type(t), n(n_)
{}
// members for all nodes
inline
bool
is_leaf() const
{
return (the_node_type==LEAF);
}
// members for leaf nodes only
inline
unsigned int
size() const
{
return n;
}
inline
Point_d_iterator
begin() const
{
return data;
}
inline
Point_d_iterator
end() const
{
return data + n;
}
// members for internal node and extended internal node
inline
Node_const_handle
lower() const
{
return lower_ch;
}
inline
Node_const_handle
upper() const
{
return upper_ch;
}
inline
Node_handle
lower()
{
return lower_ch;
}
inline
Node_handle
upper()
{
return upper_ch;
}
// inline Separator& separator() {return sep; }
// use instead
inline
FT
cutting_value() const
{
return sep.cutting_value();
}
inline
int
cutting_dimension() const
{
return sep.cutting_dimension();
}
// members for extended internal node only
inline
FT
low_value() const
{
return low_val;
}
inline
FT
high_value() const
{
return high_val;
}
Separator&
separator()
{
return sep;
}
std::size_t
num_items() const
{
if (is_leaf()) return size();
else
return lower()->num_items() + upper()->num_items();
}
std::size_t
num_nodes() const
{
if (is_leaf()) return 1;
else
return lower()->num_nodes() + upper()->num_nodes();
}
int
depth(const int current_max_depth) const
{
if (is_leaf()){
return current_max_depth;
}
else return
(std::max)( lower()->depth(current_max_depth + 1),
upper()->depth(current_max_depth + 1));
}
int
depth() const
{
return depth(1);
}
template <class OutputIterator>
OutputIterator
tree_items(OutputIterator it) const {
if (is_leaf())
{
if (n>0)
for (Point_d_iterator i=begin(); i != end(); i++)
{*it=**i; ++it;}
}
else {
it=lower_ch->tree_items(it);
it=upper_ch->tree_items(it);
};
return it;
}
void
indent(int d) const
{
for(int i = 0; i < d; i++){
std::cout << " ";
}
}
void
print(int d = 0) const
{
if (is_leaf())
{
indent(d);
std::cout << "leaf" << std::endl;
if (n>0)
for (Point_d_iterator i=begin(); i != end(); i++)
{indent(d);std::cout << **i << std::endl;}
}
else {
indent(d);
std::cout << "lower tree" << std::endl;
lower_ch->print(d+1);
indent(d);
std::cout << "separator: dim = " << sep.cutting_dimension() << " val = " << sep.cutting_value() << std::endl;
indent(d);
std::cout << "upper tree" << std::endl;
upper_ch->print(d+1);
}
}
template <class OutputIterator, class FuzzyQueryItem>
OutputIterator
search(OutputIterator it, const FuzzyQueryItem& q,
Kd_tree_rectangle<FT>& b) const
{
if (is_leaf()) {
if (n>0)
for (Point_d_iterator i=begin(); i != end(); i++)
if (q.contains(**i))
{*it=**i; ++it;}
}
else {
// after splitting b denotes the lower part of b
Kd_tree_rectangle<FT> b_upper(b);
b.split(b_upper, sep.cutting_dimension(),
sep.cutting_value());
if (q.outer_range_contains(b))
it=lower_ch->tree_items(it);
else
if (q.inner_range_intersects(b))
it=lower_ch->search(it,q,b);
if (q.outer_range_contains(b_upper))
it=upper_ch->tree_items(it);
else
if (q.inner_range_intersects(b_upper))
it=upper_ch->search(it,q,b_upper);
};
return it;
}
};
} // namespace CGAL
#endif // CGAL_KDTREE_NODE_H
|