# 简易大整数库 bint **Repository Path**: oldprincess/bint ## Basic Information - **Project Name**: 简易大整数库 bint - **Description**: 使用C语言构建的简易大整数库 BigInteger - **Primary Language**: C - **License**: CC-BY-SA-4.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 0 - **Created**: 2022-04-22 - **Last Updated**: 2024-06-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 大整数库 BigInteger #### 介绍 使用C语言构建的简易大整数库 BigInteger 算法大量参考《计算机程序设计艺术》(The Art of Computer Programming)的算法,代码部分参考 Java 的 BigInteger 库 #### 代码文件 (./src/) |文件|描述| |-|-| |bint.h, bint.c|实现无符号大整数的算法(加减乘除,比较,字符串转化)| |BigInteger.h, BigInteger.c |对bint进行符号的包装,完成有符号大整数算法| |main.c |测试| #### 相关博客 https://www.cnblogs.com/kentle/p/16180799.html