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
|
// Copyright (c) 2000 Max-Planck-Institute Saarbruecken (Germany).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
//
// $URL: https://github.com/CGAL/cgal/blob/v6.1.1/Partition_2/include/CGAL/Partition_2/Rotation_tree_2_impl.h $
// $Id: include/CGAL/Partition_2/Rotation_tree_2_impl.h 08b27d3db14 $
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
//
//
// Author(s) : Susan Hert <hert@mpi-sb.mpg.de>
#ifndef CGAL_PARTITION_2_ROTATION_TREE_2_IMPL_H
#define CGAL_PARTITION_2_ROTATION_TREE_2_IMPL_H
#include <CGAL/license/Partition_2.h>
#include <iostream>
namespace CGAL {
// makes *p the rightmost child of *q
template<class Traits>
void Rotation_tree_2<Traits>::set_rightmost_child(Self_iterator p,
Self_iterator q)
{
CGAL_assertion(q != this->end());
if (p != this->end())
{
(*p).clear_right_sibling();
if (rightmost_child(q) != this->end())
{
(*p).set_left_sibling(rightmost_child(q));
(*rightmost_child(q)).set_right_sibling(p);
}
else
(*p).clear_left_sibling();
(*p).set_parent(q);
(*q).set_rightmost_child(p);
}
else
{
(*q).clear_rightmost_child();
}
}
// makes *p the left sibling of *q
template <class Traits>
void Rotation_tree_2<Traits>::set_left_sibling(Self_iterator p,
Self_iterator q)
{
if (q == this->end()) return;
if (p != this->end())
{
if (left_sibling(q) != this->end())
{
(*left_sibling(q)).set_right_sibling(p);
(*p).set_left_sibling(left_sibling(q));
}
else
(*p).clear_left_sibling();
(*q).set_left_sibling(p);
(*p).set_right_sibling(q);
set_parent(parent(q),p);
}
else
{
if (left_sibling(q) != this->end())
(*(*q).left_sibling()).clear_right_sibling();
(*q).clear_left_sibling();
}
}
// makes p the right sibling of q
template <class Traits>
void Rotation_tree_2<Traits>::set_right_sibling(Self_iterator p,
Self_iterator q)
{
if (q == this->end()) return;
if (p != this->end())
{
if (right_sibling(q) != this->end())
{
(*right_sibling(q)).set_left_sibling(p);
(*p).set_right_sibling(right_sibling(q));
}
else
(*p).clear_right_sibling();
(*q).set_right_sibling(p);
(*p).set_left_sibling(q);
set_parent(parent(q),p);
}
else
{
if (right_sibling(q) != this->end())
(*right_sibling(q)).clear_left_sibling();
(*q).clear_right_sibling();
}
}
// NOTE: this function does not actually remove the node p from the
// list; it only reorganizes the pointers so this node is not
// in the tree structure anymore
template <class Traits>
void Rotation_tree_2<Traits>::erase(Self_iterator p)
{
CGAL_assertion((*p).is_a_leaf());
Self_iterator s;
s = right_sibling(p);
if (s != this->end())
set_left_sibling(left_sibling(p),s);
s = left_sibling(p);
if (s != this->end())
set_right_sibling(right_sibling(p),s);
s = parent(p);
// if p was the rightmost child of its parent, then set its left
// sibling as the new rightmost child
if (rightmost_child(s) == p)
set_rightmost_child(left_sibling(p),s);
}
template <class Traits>
std::ostream& operator<<(std::ostream& os, const Rotation_tree_2<Traits>& tree)
{
typename Rotation_tree_2<Traits>::const_iterator it;
for (it = tree.begin(); it != tree.end(); it++)
os << *it << " " << std::endl;
return os;
}
}
#endif // CGAL_PARTITION_2_ROTATION_TREE_2_IMPL_H
|