https://github.com/totallynotchase/cfastsieve
🚀 Fastest (probably) Sieve of Eratosthenes implementation, in C
https://github.com/totallynotchase/cfastsieve
prime-numbers sieve-of-eratosthenes
Last synced: 8 months ago
JSON representation
🚀 Fastest (probably) Sieve of Eratosthenes implementation, in C
- Host: GitHub
- URL: https://github.com/totallynotchase/cfastsieve
- Owner: TotallyNotChase
- License: bsd-2-clause
- Created: 2020-02-03T18:02:22.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-06T05:22:21.000Z (over 6 years ago)
- Last Synced: 2025-04-14T22:43:54.109Z (about 1 year ago)
- Topics: prime-numbers, sieve-of-eratosthenes
- Language: C
- Homepage:
- Size: 17.6 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fast Sieve of Eratosthenes
This is just a re-implementation of [this](https://github.com/kimwalisch/primesieve/wiki/Segmented-sieve-of-Eratosthenes) algorithm. I wanted to write it in `C` so here it is.