码迷,mamicode.com
首页 > 其他好文 > 详细

permutations

时间:2015-02-06 16:49:49      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:递归   置换   算法   c语言   permutations   

#include <stdio.h>
#include <string.h>
#define SWAP(x,y,t) ((t)=(x),(x)=(y),(y)=(t))

void perm(char *list,int k,int m)
{
	char temp;
	if(k==m)
	{
		printf("%s\n",list);
	}
	else
	{
		for(int i=k;i<=m;i++)
		{
			SWAP(list[i],list[k],temp);
			perm(list,k+1,m);
			SWAP(list[i],list[k],temp);
		}
	}
}

int main()
{
	char list[1024];
	scanf("%s",list); 
	perm(list,0,strlen(list)-1);
	return 0;
} 
http://nodeoj.chinacloudapp.cn/P/2530

permutations

标签:递归   置换   算法   c语言   permutations   

原文地址:http://blog.csdn.net/huolang_vip/article/details/43565049

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