Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 35473
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T14:14:29+00:00 2026-05-10T14:14:29+00:00

I actually have an answer to my question but it is not parallelized so

  • 0

I actually have an answer to my question but it is not parallelized so I am interested in ways to improve the algorithm. Anyway it might be useful as-is for some people.

int Until = 20000000; BitArray PrimeBits = new BitArray(Until, true);  /*  * Sieve of Eratosthenes  * PrimeBits is a simple BitArray where all bit is an integer  * and we mark composite numbers as false  */  PrimeBits.Set(0, false); // You don't actually need this, just PrimeBits.Set(1, false); // remindig you that 2 is the smallest prime  for (int P = 2; P < (int)Math.Sqrt(Until) + 1; P++)     if (PrimeBits.Get(P))         // These are going to be the multiples of P if it is a prime         for (int PMultiply = P * 2; PMultiply < Until; PMultiply += P)             PrimeBits.Set(PMultiply, false);  // We use this to store the actual prime numbers List<int> Primes = new List<int>();  for (int i = 2; i < Until; i++)     if (PrimeBits.Get(i))         Primes.Add(i); 

Maybe I could use multiple BitArrays and BitArray.And() them together?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T14:14:30+00:00Added an answer on May 10, 2026 at 2:14 pm

    You might save some time by cross-referencing your bit array with a doubly-linked list, so you can more quickly advance to the next prime.

    Also, in eliminating later composites once you hit a new prime p for the first time – the first composite multiple of p remaining will be p*p, since everything before that has already been eliminated. In fact, you only need to multiply p by all the remaining potential primes that are left after it in the list, stopping as soon as your product is out of range (larger than Until).

    There are also some good probabilistic algorithms out there, such as the Miller-Rabin test. The wikipedia page is a good introduction.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Disclaimer: This is not actually a programming question, but I feel the audience on
I think I may know the answer to this question but I'm actually looking
I actually have two questions regarding the same problem but I think it is
I have heard that it's best not to actually have any html in your
I would actually love to have an AlternatingItemTemplate on a GridView, but all it
I always have found the open source space interesting but have never actually participated
Having looked at this question, I have the following code: $/ = \0 answer
I have a JTree with multiple roots (Of course, I actually have an invisible
I used windows installer (msi project) and actually I have the msi file after
I have a JLabel (actually, it is a JXLabel). I have put an icon

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.