GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::experimental::sample(3) C++ Standard Libary std::experimental::sample(3)

std::experimental::sample - std::experimental::sample


Defined in header <experimental/algorithm>
template< class PopulationIterator, class
SampleIterator,


class Distance, class URBG >
SampleIterator sample( PopulationIterator first, (1) (library fundamentals TS)
PopulationIterator last,
SampleIterator out, Distance n,


URBG&& g);
template< class PopulationIterator, class
SampleIterator, class Distance >
(library fundamentals TS
SampleIterator sample( PopulationIterator first, (2) v2)
PopulationIterator last,


SampleIterator out, Distance n);


Selects n elements from the sequence [first; last) such that each possible sample
has equal probability of appearance, and writes those selected elements into the
output iterator out


If n is greater than the number of elements in the sequence, selects last-first
elements.


The algorithm is stable only if PopulationIterator meets the requirements of
LegacyForwardIterator


1) Random numbers are generated using the random number generator g.
2) Random numbers are generated using the per-thread engine.


first, last - pair of iterators forming the range from which to make
the sampling (the population)
out - the output iterator where the samples are written. Must
not be in the [first;last) range
n - number of samples to make
g - the random number generator used as the source of
randomness
-
PopulationIterator must meet the requirements of LegacyInputIterator.
-
SampleIterator must meet the requirements of LegacyOutputIterator.
-
SampleIterator must also meet the requirements of LegacyRandomAccessIterator if
PopulationIterator doesn't meet LegacyForwardIterator
-
PopulationIterator's value type must be writeable to out
-
Distance must be an integer type
-
URBG must meet the requirements of UniformRandomBitGenerator and its return type
must be convertible to Distance


Returns a copy of out after the last sample that was output, that is, end of the
sample range.


Linear in std::distance(first,last)


This function may implement selection sampling or reservoir sampling.

// Run this code


#include <iostream>
#include <random>
#include <string>
#include <iterator>
#include <experimental/algorithm>


int main()
{
std::string in = "abcdefgh", out;
std::experimental::sample(in.begin(), in.end(), std::back_inserter(out),
5, std::mt19937{std::random_device{}()});
std::cout << "five random letters out of " << in << " : " << out << '\n';
}


five random letters out of abcdefgh : cdefg


random_shuffle
shuffle randomly re-orders elements in a range
(until C++17) (function template)
(C++11)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.