一種樸素的解決方式如下:
根據上述想法,可以寫出如下**:
#includeusing namespace std;
int coun = 0;
void perm(string& str, int l, int r)
cout << endl;
coun ++;
}else
}}int main()
關於上述演算法的幾個敘述:
顯然,上述演算法只能處理不重複字串的全排列問題(因為它將所有的字元視為不同)。
根據上述思想,可以寫出如下**:
#includeusing namespace std;
int main()
if (j < 0)
int k = len - 1;
while (str[k] < str[j])
swap(str[j], str[k]);
reverse(str.begin()+j+1, str.end());
cout << str << endl;
coun ++;
}cout << coun << endl;
return 0;
}
考慮在上述過程中加入重複的字元。
考慮3221
的下乙個排列,顯然這個數字沒有下乙個排列。但是根據while(j >= 0 && str[j] > str[j+1])
,條件中的後者不成立,因此j並不會變成負數,因此會陷入死迴圈。於是將**改為while(j >= 0 && str[j] >= str[j+1])
。
修改完**以後:
#includeusing namespace std;
int main()
if (j < 0)
int k = len - 1;
while (str[k] <= str[j])
swap(str[j], str[k]);
reverse(str.begin()+j+1, str.end());
cout << str << endl;
coun ++;
}cout << coun << endl;
return 0;
}
關於上述**的幾個討論
class solution
if (j < 0)
int k = len - 1;
while (str[j] >= str[k])
swap(str[k], str[j]);
reverse(str.begin()+j+1, str.end());
ret.push_back(str);
}return ret;
}};
全排列問題
一 全排列問題演算法描述如下 舉例 345的全排列分別為 345 354 435 453 534 543,可見將整組數中的所有的數分別與第乙個數交換,這樣就總是在處理後n 1個數的全排列。又舉例 45的全排列有 45 54 可見將第乙個數分別與後面的數交換後輸出即為45的全排列。所以,對於乙個很長一...
全排列問題
題目描述814 全排列問題 鍵盤輸入n 1 n 10 個字元,輸出輸出其全排序。第一行為字元個數k,第二行為k個字元,不用空格隔開。輸出其每種排列佔一行,各字元間用一空格隔開。樣例輸入 3abc 樣例輸出 a b c a c b b a c b c a c b a c a b includeint ...
全排列問題
全排列就是從第乙個數字起 每個數分別與它後面的數字交換 用c 寫乙個函式,如 foo const char str 列印出 str 的全排列,如 abc 的全排列 abc,acb,bca,dac,cab,cba。第一種方法 用遞迴 不包含有重複數字或字元出現的情況 void swap char a,...