-->

Finding the rank of the Given string in list of al

2019-03-01 15:25发布

问题:

I was trying to find the Rank of the given string in the list of permutations and was hoping someone can find the bug.

function permute() {
    var W = $('input').val(),
        C = [];
    for (var i = 0; i < 26; i++) C[i] = 0;
    var rank = 1;
    for (var i = 0; i < W.length; i++) {
        C[W.charCodeAt(i) - 'a'.charCodeAt(0)]++;
    }
    var repeated= 1;
    for (var i = 0; i < C.length; i++) {
        if(C[i] > 0) {
            repeated *=  fact(C[i]);
        }
    }    

    if (W !== '') {
        for (var i = 0; i < W.length; i++) {
            //How many characters which are not used, that come before current character
            var count = 0;
            for (var j = 0; j < 26; j++) {
                if (j == (W.charCodeAt(i) - 'a'.charCodeAt(0))) break;
                if (C[j] > 0) count++;
            }
            C[W.charCodeAt(i) - 'a'.charCodeAt(0)] = 0;
            rank += ( count * fact(W.length - i - 1) );
        }
        rank = rank/ repeated;
    }
    var pp = 'Rank of  :: ' + W + ' -- ' + rank;
    $('div').append('<p>' + pp + '</p>');
}

function fact(n) {
    if (n == 0 || n == 1) return 1;
    else return fact(n - 1) * n;
}

$('button').click(permute);

Check Fiddle

A use case for this might be

bookkeeper is supposed to give a rank of 10743.

回答1:

Here's the demo:

For each position check how many characters left have duplicates, and use the logic that if you need to permute n things and if 'a' things are similar the number of permutations is n!/a!