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

《算法竞赛从入门到进阶》第四章 搜索技术

时间:2019-11-11 15:35:30      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:16px   temp   入门   算法   clu   art   ace   int end   mic   

递归打印全排列

#include<iostream>
#include<algorithm>
#include<ctime>
#define Swap(a,b) {int temp=a;a=b;b=temp;}
using namespace std;
int data[]={1,2,3,4,5,6,7,8,9,10,32,15,18,33};
int num = 0;
int Perm(int begin,int end)
{
	int i;
	if(begin==end)
	{
		num++;
	}
	else
	{
		for(i=begin;i<=end;++i)
		{
			Swap(data[begin],data[i]);
			Perm(begin+1,end);
			Swap(data[begin],data[i]);
		}
	}
}
int main()
{
	clock_t start,end;
	start = clock();
	Perm(0,9);
	end = clock();
	cout<<(double)(end-start)/CLOCKS_PER_SEC<<endl;
	cout<<num<<endl;
	return 0;
}
 

  

《算法竞赛从入门到进阶》第四章 搜索技术

标签:16px   temp   入门   算法   clu   art   ace   int end   mic   

原文地址:https://www.cnblogs.com/chrysanthemum/p/11835181.html

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