简体   繁体   English

在 C 中实现 bigint 的最简单方法是什么?

[英]What is the simplest way of implementing bigint in C?

I am trying to calculate 100, (that is. the factorial of 100).我正在尝试计算 100(即 100 的阶乘)。

I am looking for the simplest way to accomplish this using C. I have read around but have not found a concrete answer.我正在寻找使用 C 完成此操作的最简单方法。我已经阅读过但没有找到具体答案。

If you must know, I program in Xcode in Mac os X.如果你一定要知道,我在 Mac OS X 中编程为 Xcode。

If you're looking for a simple library, libtommath (from libtomcrypt) is probably what you want.如果您正在寻找一个简单的库,libtommath(来自 libtomcrypt)可能就是您想要的。

If you're looking to write a simple implementation yourself (either as a learning exercise or because you only need a very limited subset of bigint functionality and don't want to tack on a dependency to a large library, namespace pollution, etc.), then I might suggest the following for your problem:如果您想自己编写一个简单的实现(作为学习练习,或者因为您只需要非常有限的 bigint 功能子集,并且不想依赖于大型库、命名空间污染等) ,那么我可能会针对您的问题提出以下建议:

Since you can bound the size of the result based on n , simply pre-allocate an array of uint32_t of the required size to hold the result.由于您可以根据n限制结果的大小,因此只需预先分配所需大小的uint32_t数组来保存结果。 I'm guessing you'll want to print the result, so it makes sense to use a base that's a power of 10 (ie base 1000000000) rather than a power of 2. That is to say, each element of your array is allowed to hold a value between 0 and 999999999.我猜你会想要打印结果,所以使用 10 的幂(即基数 1000000000)而不是 2 的幂的基数是有意义的。也就是说,数组的每个元素都是允许的保持一个介于 0 和 999999999 之间的值。

To multiply this number by a (normal, non-big) integer n , do something like:要将这个数字乘以(正常的,非大的)整数n ,请执行以下操作:

uint32_t carry=0;
for(i=0; i<len; i++) {
    uint64_t tmp = n*(uint64_t)big[i] + carry;
    big[i] = tmp % 1000000000;
    carry = tmp / 1000000000;
}
if (carry) big[len++] = carry;

If you know n will never be bigger than 100 (or some other small number) and want to avoid going into the 64-bit range (or if you're on a 64-bit platform and want to use uint64_t for your bigint array), then make the base a smaller power of 10 so that the multiplication result will always fit in the type.如果您知道n永远不会大于 100(或其他一些小数)并希望避免进入 64 位范围(或者如果您在 64 位平台上并希望将uint64_t用于您的 bigint 数组) ,然后将基数设为 10 的较小幂,以便乘法结果始终适合该类型。

Now, printing the result is just something like:现在,打印结果就像:

printf("%lu", (long)big[len-1]);
for(i=len-1; i; i--) printf("%.9lu", (long)big[i-1]);
putchar('\n');

If you want to use a power of 2 as the base, rather than a power of 10, the multiplication becomes much faster:如果您想使用 2 的幂作为底数,而不是 10 的幂,则乘法会变得更快:

uint32_t carry=0;
for(i=0; i<len; i++) {
    uint64_t tmp = n*(uint64_t)big[i] + carry;
    big[i] = tmp;
    carry = tmp >> 32;
}
if (carry) big[len++] = carry;

However, printing your result in decimal will not be so pleasant... :-) Of course if you want the result in hex, then it's easy:但是,以十进制打印结果不会那么令人愉快...... :-) 当然,如果你想要十六进制的结果,那么这很容易:

printf("%lx", (long)big[len-1]);
for(i=len-1; i; i--) printf("%.8lx", (long)big[i-1]);
putchar('\n');

Hope this helps!希望这可以帮助! I'll leave implementing other things (like addition, multiplication of 2 bigints, etc) as an exercise for you.我将实现其他事情(如加法、2 个 bigint 的乘法等)作为您的练习。 Just think back to how you learned to do base-10 addition, multiplication, division, etc. in grade school and teach the computer how to do that (but in base-10^9 or base-2^32 instead) and you should have no problem.回想一下你在小学是如何学会做基数 10 加法、乘法、除法等的,然后教计算机如何做(但用基数 10^9 或基数 2^32),你应该没有问题。

If you're willing to use a library implementation the standard one seems to be GMP如果您愿意使用库实现,标准的似乎是GMP

mpz_t out;
mpz_init(out);
mpz_fac_ui(out,100);
mpz_out_str(stdout,10,out);

should calculate 100!应该算100! from looking at the docs.从查看文档。

You asked for the simplest way to do this.你要求最简单的方法来做到这一点。 So, here you go:所以,给你:

#include <gmp.h>
#include <stdio.h>

int main(int argc, char** argv) {
    mpz_t mynum;
    mpz_init(mynum);
    mpz_add_ui(mynum, 100);
    int i;
    for (i = 99; i > 1; i--) {
        mpz_mul_si(mynum, mynum, (long)i);
    }
    mpz_out_str(stdout, 10, mynum);
    return 0;
}

I tested this code and it gives the correct answer.我测试了这段代码,它给出了正确的答案。

You can also use OpenSSL bn ;您也可以使用OpenSSL bn it is already installed in Mac OS X.它已经安装在 Mac OS X 中。

You can print factorial 1000 in C with just 30 lines of code, <stdio.h> and char type:只需 30 行代码、 <stdio.h>char类型,您就可以在 C 中打印阶乘 1000:

#include <stdio.h>
#define B_SIZE 3000 // number of buffered digits

struct buffer {
    size_t index;
    char data[B_SIZE];
};

void init_buffer(struct buffer *buffer, int n) {
    for (buffer->index = B_SIZE; n; buffer->data[--buffer->index] = (char) (n % 10), n /= 10);
}

void print_buffer(const struct buffer *buffer) {
    for (size_t i = buffer->index; i < B_SIZE; ++i) putchar('0' + buffer->data[i]);
}

void natural_mul_buffer(struct buffer *buffer, const int n) {
    int a, b = 0;
    for (size_t i = (B_SIZE - 1); i >= buffer->index; --i) {
        a = n * buffer->data[i] + b;
        buffer->data[i] = (char) (a % 10);
        b = a / 10;
    }
    for (; b; buffer->data[--buffer->index] = (char) (b % 10), b /= 10);
}

int main() {
    struct buffer number_1 = {0};
    init_buffer(&number_1, 1);
    for (int i = 2; i <= 100; ++i)
        natural_mul_buffer(&number_1, i);
    print_buffer(&number_1);
}

You will find faster but the “little” factorial(10000) is here computed ≈ instantly.你会发现速度更快,但这里的“小” factorial(10000)是立即计算出来的。

You can put it into a fact.c file then compile + execute:您可以将其放入fact.c文件中,然后编译 + 执行:

gcc -O3 -std=c99 -Wall -pedantic fact.c ; ./a.out ;

If you want to execute some base conversion there is a solution , see also Fibonacci(10000) , Thank You.如果您想执行一些基本转换,有一个解决方案,另请参阅Fibonacci(10000) ,谢谢。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在C中获取用户输入的最简单方法是什么? - What is the simplest way of getting user input in C? 在 C/C++ 中编写计时器的最简单方法是什么? - What is the simplest way to write a timer in C/C++? 在C语言中对字符数组进行alpha排序的最简单方法是什么? - What would be the simplest way to alpha sort an array of chars in C? 在 C 中产生 Segfault 的最简单的标准符合方法是什么? - What is the simplest standard conform way to produce a Segfault in C? 从C程序中写入ip地址的最简单方法是什么? - What is the simplest way to write to an ip address from within a C program? 确定C程序的最简单方法 - Simplest way to determinize a C program 在 C/C++ 中,反转字节中位顺序的最简单方法是什么? - In C/C++ what's the simplest way to reverse the order of bits in a byte? 在C / C ++(ms)中将char []转换为/从tchar []的最简单方法是什么? - What is the simplest way to convert char[] to/from tchar[] in C/C++(ms)? 我的C程序从配置中接收一些文件路径的最简单方法是什么? - What is the simplest way for my C program to receive some file paths from configuration? 以二进制模式写入标准输出的最简单方法是什么? - What is the simplest way to write to stdout in binary mode?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM