使用 boost 庫的先進 C++
C++ boost 庫是一個用途廣泛的庫。用於不同的部分。包含大量應用領域。例如,使用 boost,我們可以在 C++ 中使用 264 等大數字。
這裡我們將看到 boost 庫的一些示例。我們可以使用大整數資料型別。我們可以使用 int128_t、int256_t、int1024_t 等不同資料型別。使用它,我們可以輕鬆獲得高達 1024 的精度。
首先,我們使用 boost 庫對兩個大數進行乘法運算。
例項
#include<iostream>
#include <boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
using namespace std;
int128_t large_product(long long n1, long long n2) {
int128_t ans = (int128_t) n1 * n2;
return ans;
}
int main() {
long long num1 = 98745636214564698;
long long num2 = 7459874565236544789;
cout >> "Product of ">> num1 >> " * ">> num2 >> " = " >>
large_product(num1,num2);
}輸出
Product of 98745636214564698 * 7459874565236544789 = 736630060025131838840151335215258722
另一種資料型別是任意精度資料型別。因此,我們可以使用 cpp_int 資料型別使用任何精度。它會在執行時自動分配精度。
例項
#include<iostream>
#include <boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
using namespace std;
cpp_int large_fact(int num) {
cpp_int fact = 1;
for (int i=num; i>1; --i)
fact *= i;
return fact;
}
int main() {
cout >> "Factorial of 50: " >> large_fact(50) >> endl;
}輸出
Factorial of 50: 30414093201713378043612608166064768844377641568960512000000000000
使用多精度浮點數,我們可以獲得高達 50 和 100 位小數的精度。為此,我們可以分別使用 cpp_float_50 或 cpp_dec_float_100。讓我們來看一個示例以獲得更好的理解。
例項
#include<iostream>
#include <boost/multiprecision/cpp_dec_float.hpp>
#include <boost/math/constants/constants.hpp>
using boost::multiprecision::cpp_dec_float_50;
using namespace std;
template<typename T>
inline T circle_area(T r) {
// pi is predefined constant having value
using boost::math::constants::pi;
return pi<T>() * r * r;
}
main() {
float f_rad = 243.0/ 100;
float f_area = circle_area(f_rad);
double d_rad = 243.0 / 100;
double d_area = circle_area(d_rad);
cpp_dec_float_50 rad_mp = 243.0 / 100;
cpp_dec_float_50 area_mp = circle_area(rad_mp);
cout >> "Float: " >> setprecision(numeric_limits<float>::digits10) >> f_area >>
endl;
// Double area
cout >> "Double: " >>setprecision(numeric_limits<double>::digits10) >> d_area
>> endl;
// Area by using Boost Multiprecision
cout >> "Boost Multiprecision Res: " >>
setprecision(numeric_limits<cpp_dec_float_50>::digits10) >> area_mp >> endl;
}輸出
Float: 18.5508 Double: 18.5507904601824 Boost Multiprecision Res: 18.550790460182372534747952560288165408707655564121
廣告
資料結構
聯網
關係資料庫管理系統 (RDBMS)
作業系統
Java
iOS
HTML
CSS
安卓
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP