文章目录 一、std::format二、std::source_location三、detail名字空间四、X-macro技术五、cpp20的log参考 一、std::format GCC 13, CLANG 14 and MSVC 16.10/VS 2019 all have the {fmt} based std::format available in respective standard libraries. 基本字符串格式化&am…
逆序数对的统计
题目描述 运行代码
#include <iostream>
using namespace std;
#define LL long long
const int N 1e5 5;
int a[N], tmp[N];
LL merge_sort(int q[], int l, int r)
{if (l > r)return 0; int mid l r >> 1; LL res merge_sort(q, l,…
Debian是一种流行的Linux发行版,它提供了一组强大的命令行工具来帮助用户管理系统和文件。以下是一些Debian中常用的命令,按照不同的功能分类进行了归纳:
文件与目录操作 ls 功能:列出目录内容。常用选项: -l…