全排列递归思路(c)版本

附上 c 版本

#include<stdio.h>
#include<string.h>
#include<stdlib.h>

#define MAX 10

char * subElement(char *input,int pos);
void permutation(char *input,int len, int pos, char *p);

char *subElement(char *input, int pos)
{
    int i = 0;
    char *ret = (char*)malloc(MAX*sizeof(char));
    char *tmp = ret;
    while( input != NULL && i < MAX )
    {
        if(i != pos)
        {
            *tmp = *input;
            tmp++;
        }
        input++;
        i++;
    }
    tmp[i] = '\0';
    return ret;
}
void permutation(char *input, int len, int pos, char *p)
{
    int i = 0;

    if(len == 0)
    {
        return;
    }
    //only one element
    if(len == 1)
    {
            printf("{%s}\n",input);
            return;
    }

    char *lp = (char *)malloc(sizeof(char)*MAX);
    memset(lp,'\0',sizeof(char)*MAX);

    char *sp = subElement(input, pos);
    int plen = 0;
    if(p != NULL)
    {
        plen = strlen(p);
        strcpy(lp,p);
    }

    lp[plen] = input[pos];
    lp[plen+1] = '\0';

    int slen = strlen(sp);
    if(slen == 1)
    {
        lp[plen+1] = *sp;
        printf("{%s}\n",lp);
        return;
    }

    for(i = 0; i < slen; i++)
    {
        permutation(sp,len-1,i,lp);
    }
    free(sp);
    free(lp);
}
void main()
{
    int i = 0;
    char instr[MAX];
    printf("write elements:");
    scanf("%s",instr);
    char *parent = NULL;
    for(i = 0; i < strlen(instr); i++)
    {
        permutation(instr,strlen(instr), i, parent);
    }
}

 

关于这类问题的一个数学解释,很强大。

http://episte.math.ntu.edu.tw/articles/mm/mm_10_2_04/index.html

留下链接慢慢学习。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值