dust3d/thirdparty/cgal/CGAL-5.1/include/CGAL/halfedgeds_connected_compon...

84 lines
2.8 KiB
C
Raw Normal View History

2020-10-13 12:44:25 +00:00
// Copyright (c) 1997
// Utrecht University (The Netherlands),
// ETH Zurich (Switzerland),
// INRIA Sophia-Antipolis (France),
// Max-Planck-Institute Saarbruecken (Germany),
2020-10-13 12:44:25 +00:00
// and Tel-Aviv University (Israel). All rights reserved.
//
2020-10-13 12:44:25 +00:00
// This file is part of CGAL (www.cgal.org)
//
2020-10-13 12:44:25 +00:00
// $URL: https://github.com/CGAL/cgal/blob/v5.1/HalfedgeDS/include/CGAL/halfedgeds_connected_components.h $
// $Id: halfedgeds_connected_components.h 0779373 2020-03-26T13:31:46+01:00 Sébastien Loriot
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
//
//
// Author(s) : Lutz Kettner <kettner@mpi-sb.mpg.de>
#ifndef CGAL_HALFEDGEDS_CONNECTED_COMPONENTS_H
#define CGAL_HALFEDGEDS_CONNECTED_COMPONENTS_H 1
#include <CGAL/Unique_hash_map.h>
#include <CGAL/iterator.h>
#include <vector>
namespace CGAL {
2020-10-13 12:44:25 +00:00
template <class HDS, class Output_iterator,
class Halfedge_iterator, class Halfedge_handle>
2020-10-13 12:44:25 +00:00
std::size_t
halfedgeds_connected_components( HDS hds, Output_iterator result) {
Unique_hash_map< Halfedge_iterator, bool> hedge_map( false);
std::size_t count = 0;
std::vector< Halfedge_handle> hstack;
hstack.reserve( hds.size_of_halfedges() + 3/ 4);
Halfedge_iterator scan = hds.halfedges_begin();
while ( scan != hds.halfedges_end()) {
// first trace the component, then report it
hstack.clear();
hstack.push_back( scan);
while ( ! hstack.empty()) {
Halfedge_handle h = hstack.back();
hstack.pop_back();
if ( ! hedge_map[ h] ) {
hedge_map[ h] = true;
hstack.push_back( h->next());
hstack.push_back( h->opposite());
}
}
++count;
*result++ = scan;
while( hedge_map[ scan])
++scan;
}
return count;
}
template <class HDS, class Output_iterator>
2020-10-13 12:44:25 +00:00
std::size_t
halfedgeds_connected_components( HDS& hds, Output_iterator result) {
2020-10-13 12:44:25 +00:00
typedef typename HDS::Halfedge_iterator Halfedge_iterator;
typedef typename HDS::Halfedge_handle Halfedge_handle;
return halfedgeds_connected_components<HDS&, Output_iterator,
Halfedge_iterator, Halfedge_handle>( hds, result);
}
template <class HDS, class Output_iterator>
2020-10-13 12:44:25 +00:00
std::size_t
halfedgeds_connected_components( const HDS& hds, Output_iterator result) {
2020-10-13 12:44:25 +00:00
typedef typename HDS::Halfedge_const_iterator Halfedge_iterator;
typedef typename HDS::Halfedge_const_handle Halfedge_handle;
return halfedgeds_connected_components<const HDS&, Output_iterator,
Halfedge_iterator, Halfedge_handle>( hds, result);
}
template <class HDS>
2020-10-13 12:44:25 +00:00
std::size_t
halfedgeds_connected_components( HDS& hds) {
return halfedgeds_connected_components( hds, Emptyset_iterator());
}
} //namespace CGAL
#endif // CGAL_HALFEDGEDS_CONNECTED_COMPONENTS_H //
// EOF //