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 8276371
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T08:21:09+00:00 2026-06-08T08:21:09+00:00

I have a c++ BigInteger library. I have to create a bigInteger with exact

  • 0

I have a c++ BigInteger library. I have to create a bigInteger with exact 125 bit from any large random number. I need to perform rightshift, leftshift, setbit, getbit, NOT, OR, XOR, AND operation on created 125 bit number. Which library i need to use to do above operation? Can anyone please help me.

  • 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. Editorial Team
    Editorial Team
    2026-06-08T08:21:11+00:00Added an answer on June 8, 2026 at 8:21 am

    A google search with the terms big integer library gave me the C++ Big Integer Library . From the website:

    This library emphasizes ease of use and clarity of implementation over
    speed; some users will prefer GMP, which is faster.

    Edit:

    To create a random number with 125 bits there are plenty of options.

    A simple and quick solution (but obviously not available in the library I posted above – I don’t whether it’s possible with GMP) would be to do a rand() * 0x1FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF in the correct notation.

    A method in the scope of the above library, which unfortunately is rather slow, would be to draw 125 single bits (“0” or “1” at random) and add increasing powers of 2 if you drew a “1”. Here is some (untested) code:

    BigInteger summand, number125bit;
    summand = 1;
    
    srand(systemtime_or_any_other_number);
    for (int i=0; i<125; i++)
    {
        if (rand() && 1)
        {
             number125bit += summand;
        }
        summand = summand << 1;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have used this library . I have to perform bit operations on BigUnsigned
I have a method (in 3rd-party library) with BigInteger parameter: public void setValue (BigInteger
Have done quite a bit of searching for a guide (of any substance) for
I have a C# system using 160 bit numbers, stored in a BigInteger. I
I have an assignment in which I need to create a function that tells
I need to invert a BigInteger . Let's say i have BigInteger x; and
I have a problem with the Java BigInteger class: I can't paste a large
I have long [] data and i need to convert it to ArrayList<BigInteger> Is
Does valueOf for BigInteger have any limitations ? I'm not sure but read somewhere,
How can we generate very large random number in java? I am talking something

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.