这个头文件中的一个函数next_permutation() 程序如下
#include <algorithm>
int main()
{
char* s="ABCD";
for(int i=0;i<24;i++)
next_permutation(s,s+4);
cout<<(i%8>"\t":"\n")<<s;
}
return 0;
大家看看能不能运行,我在VC++6.0上链接成功过但运行后就提示程序出错不知是何原因