摘要: 法一:cmp函数 代码实现 #include<iostream> #include<algorithm> using namespace std; int cmp(int a, int b) { return a > b; } int main() { int num[5] = {1, 2, 3, 阅读全文
posted @ 2022-02-19 18:54 NUC_ACM开完刀 阅读(697) 评论(0) 推荐(0) 编辑
摘要: 标准iostream库 fill函数 数组num[N];,fill(num, num + n, x)n ⇐ N, x为任意值 algorithm库 next_permutation函数 prev_permutation函数 数组num[5] = {1, 2, 3, 4, 5};调用next_perm 阅读全文
posted @ 2022-02-19 13:17 NUC_ACM开完刀 阅读(111) 评论(0) 推荐(0) 编辑