forked from cmuparlay/parlaylib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkth_smallest.cpp
37 lines (31 loc) · 989 Bytes
/
kth_smallest.cpp
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
#include <iostream>
#include <random>
#include <string>
#include <parlay/primitives.h>
#include <parlay/random.h>
#include "kth_smallest.h"
// **************************************************************
// Driver
// **************************************************************
int main(int argc, char* argv[]) {
auto usage = "Usage: kth_smallest <n>";
if (argc != 2) std::cout << usage << std::endl;
else {
long n;
try { n = std::stol(argv[1]); }
catch (...) { std::cout << usage << std::endl; return 1; }
parlay::random_generator gen;
std::uniform_int_distribution<long> dis(0, n-1);
// generate random long values
auto data = parlay::tabulate(n, [&] (long i) -> long {
auto r = gen[i];
return dis(r); });
parlay::internal::timer t("Time");
long result;
for (int i=0; i < 5; i++) {
result = kth_smallest(data, n/2);
t.next("kth_smallest");
}
std::cout << "median is: " << result << std::endl;
}
}