gpt4 book ai didi

c - 排列字母

转载 作者:行者123 更新时间:2023-11-30 19:18:13 25 4
gpt4 key购买 nike

我有 2 个字母 P 和 C 和 N -迭代次数(偶数)例如。 if N = 4=> CCPP, PPCC , CPPC, PCCP, CPCP, PCPC (想法是显示这种解决方案,其中 N= C-s 数量 = P-s 数量)

最佳答案

您可以生成排列

int N;
cin >> N;
string str = string(N/2, 'C') + string(N/2, 'P');
do {
cout << str << endl;
} while( next_permutation(str.begin(), str.end()));

Live example here

C中,您需要编写自己的permutation function .

typedef int bool;
bool true = 1;
bool false = 0;

int compare (const void *a, const void * b)
{ return ( *(char *)a - *(char *)b ); }

void swap (char* a, char* b)
{
char t = *a;
*a = *b;
*b = t;
}

// This function finds the index of the smallest character
// which is greater than 'first' and is present in str[l..h]
int findCeil (char str[], char first, int l, int h)
{
// initialize index of ceiling element
int ceilIndex = l, i;

// Now iterate through rest of the elements and find
// the smallest character greater than 'first'
for (i = l+1; i <= h; i++)
if (str[i] > first && str[i] < str[ceilIndex])
ceilIndex = i;

return ceilIndex;
}
// Print all permutations of str in sorted order
void permute ( char str[] )
{
// Get size of string
int size = strlen(str);

// Print permutations one by one
bool isFinished = false;
while ( ! isFinished )
{
int i;
// print this permutation
printf ("%s \n", str);

// Find the rightmost character which is smaller than its next
// character. Let us call it 'first char'
for ( i = size - 2; i >= 0; --i )
if (str[i] < str[i+1])
break;

// If there is no such chracter, all are sorted in decreasing order,
// means we just printed the last permutation and we are done.
if ( i == -1 )
isFinished = true;
else
{
// Find the ceil of 'first char' in right of first character.
// Ceil of a character is the smallest character greater than it
int ceilIndex = findCeil( str, str[i], i + 1, size - 1 );

// Swap first and second characters
swap( &str[i], &str[ceilIndex] );

// Sort the string on right of 'first char'
qsort( str + i + 1, size - i - 1, sizeof(str[0]), compare );
}
}
}

int main(void) {
int N;
char *a = NULL;
if(1 != scanf("%d\n", &N)) {
fprintf(stderr, "Can not read the value of N\n");
return 1;
}
a = malloc(N + 1);
if(!a) {
fprintf(stderr, "Out of mem\n");
return 1;
}
memset(a, 'C', N/2);
memset(a + N/2, 'P', N/2);
a[N] = '\0';
permute(a, 0, strlen(a) - 1);
free(a);
return 0;
}

Live Example here

关于c - 排列字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27011947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com