摘要:
法一: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, 阅读全文
摘要:
标准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 阅读全文