第一题、求字符串(可能有重复字母)的全排列有多少种? 这一题只用了几十秒吧,之前看了leetcode的解法,选择用了库函数next_permutation,但是不知道为啥只过了90%。。。。。求大佬解答。 #include <bits/stdc++.h> using namespace std; int main() { string s; while(cin >> s) { sort(s.begin(), s.end()); string tmp(s); int ...