URI:
   DIR Return Create A Forum - Home
       ---------------------------------------------------------
       techsuns
  HTML https://techsuns.createaforum.com
       ---------------------------------------------------------
       *****************************************************
   DIR Return to: Puzzles && Algorithms
       *****************************************************
       #Post#: 182--------------------------------------------------
       Permutations of a string
       By: ravu Date: November 21, 2012, 12:30 am
       ---------------------------------------------------------
       Write an algo to find all permutations of a string?
       #Post#: 191--------------------------------------------------
       Re: Permutations of a string
       By: dinesh Date: November 24, 2012, 10:22 am
       ---------------------------------------------------------
       you have to take care of strings like
       baa
       abab
       #Post#: 192--------------------------------------------------
       Re: Permutations of a string
       By: kranthipls Date: November 25, 2012, 10:04 pm
       ---------------------------------------------------------
       Does all the strings have same length?????
       #Post#: 195--------------------------------------------------
       Re: Permutations of a string
       By: dinesh Date: November 25, 2012, 11:11 pm
       ---------------------------------------------------------
       you are given a single string as input.
       I mentioned 2 special test cases.
       #Post#: 199--------------------------------------------------
       Re: Permutations of a string
       By: kpr29 Date: November 26, 2012, 12:42 am
       ---------------------------------------------------------
       @Ts: So how many guys have implemented........... If yes notify,
       then the whole class will do..... otherwise it will be yet
       another post..... If yes put some small code snippets which will
       remind us to implement..........
       #Post#: 200--------------------------------------------------
       Re: Permutations of a string
       By: dinesh Date: November 26, 2012, 12:46 am
       ---------------------------------------------------------
       I feel that it is a good program to implement. It is not too big
       also.
       #Post#: 203--------------------------------------------------
       Re: Permutations of a string
       By: ravusairam Date: November 26, 2012, 4:28 am
       ---------------------------------------------------------
       @kranthi -
       you have to generate all the permutaions of a string- for
       example
       abc
       abc
       acb
       bac
       bca
       cab
       cba
       - I think you can take care of case which Majeti told that is if
       there is a repeatiion of characters in a string once you get
       this.
       *****************************************************