algorithm库
next_permutation/prev_permutation函数
数组num[5] = {1, 2, 3, 4, 5};
调用next_permutation(num, num + 5)
,使数组num
内的数据排列变为一个序列(每次调用该序列字典序从小到大)
prev_permutation
函数的作用和next_permutation
函数作用相反
标签:总结,调用,函数,C++,next,num,permutation,prev
来源: https://www.cnblogs.com/kaiwandao/p/15912359.html