給定輸入的字符串,計算根據字符串不一樣組合能生成的不一樣組合的個數

1 #include <iostream> 2 #include <map> 3 typedef unsigned long long ullong; 4 using std::string; 5 6 ullong factorial(ullong i) { 7 if (i > 1) { 8 return i * factorial(i - 1); 9
相關文章
相關標籤/搜索