复试上级指南之递归字符串全排列

北京大学复试上级题

给一个由不同小写字母组成的字符串,输出字符串的全排列。

#include
#include
#include
#include
#include
#include
using namespace std;
char str[10001];
void Permutation(int from,int to)
{
  if(from==to)
  {
     for(int i=0;i<=to;i++)
     {
	cout<>str;
  int size =strlen(str);
  Permutation(0,size-1);
  return 0;
}

你可能感兴趣的:(考研复试,C++,C++STL)