You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
670 B
36 lines
670 B
#include <cstdlib>
|
|
#include <ctime>
|
|
|
|
#include <vector>
|
|
#include <algorithm>
|
|
|
|
|
|
std::vector<int> generate_random_numbers(int n, int min, int max)
|
|
{
|
|
std::srand(std::time(nullptr));
|
|
std::vector<int> v(n);
|
|
for (int i = 0; i < n; ++i)
|
|
v[i] = min + std::rand() / ((RAND_MAX + 1u)/max);
|
|
|
|
return v;
|
|
}
|
|
|
|
int compute(const std::vector<int>& v)
|
|
{
|
|
int min = *std::min_element(v.begin(), v.end());
|
|
return std::count(v.begin(), v.end(), min);
|
|
}
|
|
|
|
int main(int /*argc*/, char* /*argv*/[])
|
|
{
|
|
std::vector<int> v = generate_random_numbers(10000, 0, 100);
|
|
|
|
// How many times does the smallest element occurst in the vector?
|
|
|
|
int r = compute(v);
|
|
|
|
(void)r;
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|