码迷,mamicode.com
首页 > 编程语言 > 详细

C++全排列函数

时间:2018-03-29 23:14:50      阅读:351      评论:0      收藏:0      [点我收藏+]

标签:cout   stream   ios   pos   namespace   ace   space   gpo   main   

#include<algorithm>
#include<iostream>
using namespace std;
#include<algorithm>
int main()
{
	int a[3]={1,2,3};
	do
	{
		int i;
		for(i=0;i<3;i++)
		{
			cout<<a[i];
		}
		cout<<endl;
	}while(next_permutation(a,a+3));
	return 0;
} 

  

C++全排列函数

标签:cout   stream   ios   pos   namespace   ace   space   gpo   main   

原文地址:https://www.cnblogs.com/zhangshuyao/p/8672981.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!