Created
January 27, 2017 18:29
-
-
Save krhancoc/290ff069883cdba7b7b9ce924dc297ff to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void seive_of_eratosthenes(set<int> *nums, int max_value) { | |
set<int>::iterator it; | |
for(it = nums->begin(); it != nums->end(); it++){ | |
int num = *it; | |
for(int i = 2*num; i <= max_value; i+= num){ | |
nums->erase(i); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment