Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,907 questions

51,839 answers

573 users

How to select N reservoir items randomly from an array in C++

2 Answers

0 votes
#include <iostream>
#include <vector>
 
void selectReservoir(int arr[], int N, int size) {
    std::vector<int> reservoir;  
    int items = 0;
 
    srand(time(NULL));
     
    while (items < N) {
        int index = rand() % size; // index between 0 to size
        bool found = false;

        // Check if the value present in the reservoir
        for (int j = 0; j < items; j++) {
            if (reservoir[j] == arr[index]) {
                found = true;
                break;
            }
        }

        // If not present add value to the reservoir 
        if (!found) {
            reservoir.push_back(arr[index]);
            items++;
        }
    }
     
    for (auto const &val: reservoir) {
        std::cout << val << " ";
    }
}
 
int main() {
    int arr[] = { 4, 9, 14, 96, 13, 0, 3, 99, 19, 2, 80, 1, 7 };
     
    int N = 5;
    int size = sizeof(arr) / sizeof(arr[0]);
     
    selectReservoir(arr, N, size);
}
 
  
  
/*
run:
  
19 14 13 3 80 
  
*/

 



answered Feb 3, 2024 by avibootz
edited Feb 3, 2024 by avibootz
0 votes
#include <iostream>
#include <vector>

std::vector<int> selectReservoir(int arr[], int N, int size) {
    std::vector<int> reservoir;  
    int items = 0;

    srand(time(NULL));
    
    while (items < N) {
        int index = rand() % size; // index between 0 to size
        bool found = false;

        // Check if the value present in the reservoir
        for (int j = 0; j < items; j++) {
            if (reservoir[j] == arr[index]) {
                found = true;
                break;
            }
        }

        // If not present add value to the reservoir 
        if (!found) {
            reservoir.push_back(arr[index]);
            items++;
        }
    }
    
    return reservoir;
}

int main() {
    int arr[] = { 4, 9, 14, 96, 13, 0, 3, 99, 19, 2, 80, 1, 7 };
    
    int N = 5;
    int size = sizeof(arr) / sizeof(arr[0]);
    
    std::vector<int> reservoir = selectReservoir(arr, N, size);
    
    for (auto const &val: reservoir) {
        std::cout << val << " ";
    }
}

 
 
/*
run:
 
0 2 96 9 80 
 
*/

 



answered Feb 3, 2024 by avibootz
edited Feb 3, 2024 by avibootz

Related questions

1 answer 111 views
2 answers 143 views
2 answers 143 views
2 answers 120 views
2 answers 147 views
...