// Copyright (c) 1997 // Utrecht University (The Netherlands), // ETH Zurich (Switzerland), // INRIA Sophia-Antipolis (France), // Max-Planck-Institute Saarbruecken (Germany), // and Tel-Aviv University (Israel). All rights reserved. // // This file is part of CGAL (www.cgal.org) // // $URL: https://github.com/CGAL/cgal/blob/v5.1/Generator/include/CGAL/random_selection.h $ // $Id: random_selection.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 #ifndef CGAL_RANDOM_SELECTION_H #define CGAL_RANDOM_SELECTION_H 1 #include #include #include namespace CGAL { template OutputIterator random_selection( RandomAccessIterator first, RandomAccessIterator last, Size n, OutputIterator result, Random& rnd) // choose a random item from the range [`first',`last') and write it // to `result', each item from the range with equal probability. // Repeat this n times, thus writing n items to `result'. A single // random number is needed from `rnd' for each item. Returns the // value of `result' after inserting the n items. { std::ptrdiff_t m = last - first; for ( Size i = 0; i < n; i++) { *result++ = first[ rnd(m)]; } return result; } template OutputIterator random_selection( RandomAccessIterator first, RandomAccessIterator last, Size n, OutputIterator result) { return random_selection( first, last, n, result, get_default_random()); } } //namespace CGAL #endif // CGAL_RANDOM_SELECTION_H //