Be the first user to complete this post

  • 0
Add to List
Medium

126. Generate All Permutations of a String (Well-Ordered)

Objective: Write an algorithm to Print All the Well Ordered Permutations of a Given String.

What is a Well Ordered String: When all the alphabets in a string occur in increasing order irrespective of Lower Case or Upper case.

Example :

"Sample" - Not Well Ordered.

"Now" - Well Ordered. N<o<W.

Input: Interview
Output:e, e, I, i, n, r, t, v, w][e, e, i, I, n, r, t, v, w]

Approach:

 

Output:

Given String - Interview
[e, e, I, i, n, r, t, v, w]
[e, e, i, I, n, r, t, v, w]
 

Reference-

http://www.careercup.com/question?id=6206517812396032