Algorithm里其他好用的函数
Next_permutation
int a[]={1,2,3,4};
next_permutation(a,a+3);//下一个全排列
Lower_bound与Upper_bound
lower_bound(first,last,val);//有返回值
upper_bound(first,last,val);
int a[]={1,2,3,4};
next_permutation(a,a+3);//下一个全排列
lower_bound(first,last,val);//有返回值
upper_bound(first,last,val);