zoukankan      html  css  js  c++  java
  • Anagram

    Description

    You are to write a program that has to generate all possible words from a given set of letters. Example: Given the word "abc", your program should - by exploring all different combination of the three letters - output the words "abc", "acb", "bac", "bca", "cab" and "cba". In the word taken from the input file, some letters may appear more than once. For a given word, your program should not produce the same word more than once, and the words should be output in alphabetically ascending order.

    Input

    The input consists of several words. The first line contains a number giving the number of words to follow. Each following line contains one word. A word consists of uppercase or lowercase letters from A to Z. Uppercase and lowercase letters are to be considered different. The length of each word is less than 13.

    Output

    For each word in the input, the output should contain all different words that can be generated with the letters of the given word. The words generated from the same input word should be output in alphabetically ascending order. An upper case letter goes before the corresponding lower case letter.

    Sample Input

    3
    aAb
    abc
    acba
    

    Sample Output

    Aab
    Aba
    aAb
    abA
    bAa
    baA
    abc
    acb
    bac
    bca
    cab
    cba
    aabc
    aacb
    abac
    abca
    acab
    acba
    baac
    baca
    bcaa
    caab
    caba
    cbaa
    
    **********************************************************************************************************
    STL中next_permutation()的函数的应用
    **********************************************************************************************************
     1 #include<iostream>
     2 #include<string>
     3 #include<cstring>
     4 #include<queue>
     5 #include<cstdio>
     6 #include<algorithm>
     7 #include<cctype>
     8 using namespace std;
     9 char str1[1001];
    10 int num;
    11 int val(char c)
    12  {
    13      if(isupper(c))
    14       return (c-'A')*2;
    15      if(islower(c))
    16       return  (c-'a')*2+1;
    17  }
    18  bool cmp(char a,char b)
    19   {
    20       return  val(a)<val(b);
    21   }
    22   int main()
    23   {
    24       cin>>num;
    25       while(num--)
    26       {
    27           scanf("%s",str1);
    28           int len=strlen(str1);
    29           sort(str1,str1+len,cmp);
    30           do
    31           {
    32            cout<<str1<<endl;
    33           }
    34           while(next_permutation(str1,str1+len, cmp));
    35       }
    36       return 0;
    37 
    38 
    39   }
    View Code

    坚持!!!!!!!!

  • 相关阅读:
    rabbitMQ学习笔记(二) 简单的发送与接收消息 HelloWorld
    rabbitMQ学习笔记(一)Windows 与Linux下rabbitMQ的安装
    数据库必知必会操作手册—创建高级联结
    面试题 16.11. 跳水板(数学法)
    面试题 08.06. 汉诺塔问题(分治递归)
    剑指 Offer 32
    剑指 Offer 32
    剑指 Offer 53
    剑指 Offer 30. 包含min函数的栈(辅助栈)
    剑指 Offer 58
  • 原文地址:https://www.cnblogs.com/sdau--codeants/p/3297281.html
Copyright © 2011-2022 走看看