boost库包下载
官网下载https://www.boost.org/
编译安装boost库
下载好后,解压,得到文件目录(注意这是我已经编译好的)如下图,找到其中的bootstrap.bat文件:
然后打开vs2019的命令行:这里选择64位或者32位的都可以。我选择的是x86_x64的。
然后切换到你解压到的路径。运行boostbootstrap.bat。
cd 你的boost目录
./boostbootstrap.bat
等待一会 出现:
运行之后,查看该目录下会多出几个文件运行b2.
等待。。。。。。。成功
VS2019使用boost库
测试代码
#include <iostream>
#include <boost/sort/sort.hpp>
#include <algorithm>
#include <vector>using namespace std;
int main()
{
vector<int> arr;while (arr.size() < 100) arr.push_back(std::rand());boost::sort::block_indirect_sort(std::begin(arr), std::end(arr));for_each(std::begin(arr), std::end(arr), [](int& a) {
cout << a << "\t";});return 0;}
运行结果