Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ReservoirSampling algorithm to randomized module #6204

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

cureprotocols
Copy link

@cureprotocols cureprotocols commented Mar 30, 2025

Algorithm Overview:

  • Efficient for selecting k random elements from a stream of unknown size
  • Commonly used in streaming systems, big data pipelines, and memory-limited environments
  • Time Complexity: O(n)
  • Space Complexity: O(k)

Implementation Details:

  • Class: ReservoirSampling
  • Package: com.thealgorithms.randomized
  • JavaDoc included for class and method
  • Demonstration included in main() method
  • File name and class name follow PascalCase
  • Fully formatted using clang-format

Reference:

Author: Michael Alexander Montoya (@cureprotocols)

  • I have read CONTRIBUTING.md.
  • This pull request is all my own work -- I have not plagiarized it.
  • All filenames are in PascalCase.
  • All functions and variable names follow Java naming conventions.
  • All new algorithms have a URL in their comments that points to Wikipedia or other similar explanations.
  • All new code is formatted with clang-format -i --style=file path/to/your/file.java

@DenizAltunkapan
Copy link
Contributor

What if sampleSize > stream.length? Perhaps there should be error handling for invalid input, the rest lgtm

@cureprotocols
Copy link
Author

cureprotocols commented Mar 31, 2025

✅ Added input validation for sampleSize > stream.length as requested — thanks for the suggestion, @DenizAltunkapan!

Let me know if anything else is needed — happy to improve further 🙌

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants