Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given the String, print all its permutations. To do that, i came up with the following program.

public static char[] swap(char[] input, int i, int j) {
        char temp;
        temp = input[i];
        input[i] = input[j];
        input[j] = temp;

        return input;

    }

    /**
     * 
     * @param args
     */

    public static void permuteStrings(char[] inputString, int start, int finish ) {
        //Base case: When there is only single element, print the string
        if(start == finish) 
            System.out.println(inputString);
        else {
            //Recursive case: Swap first element with all the elements and permute on the 
                           // rest of string.
            for(int i = start; i <= finish; i++) {
                inputString = swap(inputString, start, i);
                permuteStrings(inputString, i + 1, finish);
                inputString = swap(inputString,start, i); //restoring the original string
            }
        }
    }

But, for the given input ABC, all it prints are

ABC
BAC

I cant seem to figure out what the problem is

share|improve this question
2  
how do you invoke it? – Qnan Sep 3 '12 at 18:45
I invoked it as permuteStrings(input,0,input.length -1). I figured the problem, i have added the answer for others. – Chander Shivdasani Sep 3 '12 at 18:52

1 Answer

up vote 0 down vote accepted

Figured out the problem. The problem was in the function invocation:

permuteStrings(inputString, i + 1, finish);.

The correct way was:

permuteStrings(inputString, start + 1, finish);
share|improve this answer
So it was shadowing the i before i – huseyin tugrul buyukisik Sep 3 '12 at 18:53
The problem before was the condition "start == finish", would fail for the last recursive call – Chander Shivdasani Sep 3 '12 at 18:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.