用递归方法求n个数的无重复全排列,n=3。
1个回答
2013-09-06
展开全部
#include<stdio.h>
#include<string.h>
#define N 10
char s[N], t[N];
void convert(char *strSource, char *strTarget, int nLen)
{
int i, j;
char strConvert[10];
if(nLen == 1)
{
strTarget[0] = strSource[0];
printf("%s\n", t);
return;
}
else
{
for(i=0; i<nLen; i++)
{
for(j=0; j<i && strSource[i] != strSource[j]; j++);
if(j == i)
{
strTarget[0] = strSource[i];
memcpy(strConvert, strSource, i);
memcpy(strConvert+i, strSource+i+1, nLen-i-1);
convert(strConvert, strTarget+1, nLen-1);
}
}
}
}
void main()
{
int n;
printf("输入一个三位数:");
scanf("%d", &n);
sprintf(s, "%d", n);
memset(t, 0, N);
printf("全排列是:\n");
convert(s, t, strlen(s));
}
#include<string.h>
#define N 10
char s[N], t[N];
void convert(char *strSource, char *strTarget, int nLen)
{
int i, j;
char strConvert[10];
if(nLen == 1)
{
strTarget[0] = strSource[0];
printf("%s\n", t);
return;
}
else
{
for(i=0; i<nLen; i++)
{
for(j=0; j<i && strSource[i] != strSource[j]; j++);
if(j == i)
{
strTarget[0] = strSource[i];
memcpy(strConvert, strSource, i);
memcpy(strConvert+i, strSource+i+1, nLen-i-1);
convert(strConvert, strTarget+1, nLen-1);
}
}
}
}
void main()
{
int n;
printf("输入一个三位数:");
scanf("%d", &n);
sprintf(s, "%d", n);
memset(t, 0, N);
printf("全排列是:\n");
convert(s, t, strlen(s));
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询