Skip to content

Instantly share code, notes, and snippets.

@krhancoc
Created January 27, 2017 18:29
Show Gist options
  • Save krhancoc/290ff069883cdba7b7b9ce924dc297ff to your computer and use it in GitHub Desktop.
Save krhancoc/290ff069883cdba7b7b9ce924dc297ff to your computer and use it in GitHub Desktop.
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