2
需要幫助瞭解第二個交換呼叫的正確性。該字符串排列如何工作
/* Function to print permutations of string
This function takes three parameters:
1. String
2. Starting index of the string
3. Ending index of the string. */
void permute(char *a, int i, int n)
{
int j;
if (i == n)
printf("%s\n", a);
else
{
for (j = i; j <= n; j++)
{
swap((a+i), (a+j));
permute(a, i+1, n);
swap((a+i), (a+j)); // how does this work here?
}
}
}
看起來第二個交換是撤消第一個交換。但我沒有看到證明爲什麼中間permute
電話會保留原始*(a+i)
將保持在a+j
。
注:
[1]的代碼在http://www.geeksforgeeks.org/write-a-c-program-to-print-all-permutations-of-a-given-string/
你給這個代碼手工運行嗎? – BlackVegetable
通過歸納證明它。 「i == n-1」顯然是正確的。如果某個'0
@BlackVegetable。我做了同樣的事情:添加printf。而且這表明確實這個'permute'調用似乎在調用之前和之後保留了'a'。現在,我無法證明爲什麼。 – kirakun