28.字符串的排列

void Permutation(char*  pStr) { if (pStr == NULL) return; Permutation(pStr, pStr); } void Permutation(char* pStr, char* pBegin) { if (*pBegin == '\0') { printf("%s\n", pStr); } else { for (char* pCh =
相關文章
相關標籤/搜索