forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReservoirSampling.java
More file actions
49 lines (43 loc) · 1.39 KB
/
ReservoirSampling.java
File metadata and controls
49 lines (43 loc) · 1.39 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
package com.thealgorithms.randomized;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
/**
* Reservoir Sampling Algorithm
*
* Use Case:
* - Efficient for selecting k random items from a stream of unknown size
* - Used in streaming systems, big data, and memory-limited environments
*
* Time Complexity: O(n)
* Space Complexity: O(k)
*
* Author: Michael Alexander Montoya (@cureprotocols)
*/
public class ReservoirSampling {
/**
* Selects k random elements from a stream using reservoir sampling.
*
* @param stream The input stream as an array of integers.
* @param sampleSize The number of elements to sample.
* @return A list containing k randomly selected elements.
*/
public static List<Integer> sample(int[] stream, int sampleSize) {
if (sampleSize > stream.length) {
throw new IllegalArgumentException("Sample size cannot exceed stream size.");
}
List<Integer> reservoir = new ArrayList<>(sampleSize);
Random rand = new Random();
for (int i = 0; i < stream.length; i++) {
if (i < sampleSize) {
reservoir.add(stream[i]);
} else {
int j = rand.nextInt(i + 1);
if (j < sampleSize) {
reservoir.set(j, stream[i]);
}
}
}
return reservoir;
}
}