算法设计与分析: 1-2 字典序问题

1-2 字典序问题


问题描述

在数据加密和数据压缩中常需要对特殊的字符串进行编码。给定的字母表A由26个小写字母组成。该字母表产生的升序字符串中字母从左到右出现的次序与字母在字母表中出现的次序相同,且每个字符最多出现1次。例如,a,b,ab,bc,xyz等字符串都是升序字符串。现在对字母表中产生的所有长度不超过6的升序字符串,计算它在字典中的编码。

1 2 26 27 28
a b z ab ac

分析1

以第i个字符打头的长度为k的升序字符串个数为 f(i,k) f ( i , k ) ,长度为k的升序字符串总个数为 g(k) g ( k ) ,则 g(k) g ( k ) = 26i=1 ∑ i = 1 26 f(i,k) f ( i , k ) 。易知:
f(i,1) f ( i , 1 ) =1
g(1) g ( 1 ) = 26i=1 ∑ i = 1 26 f(i,1) f ( i , 1 ) =26

f(i,2) f ( i , 2 ) = 26j=i+1 ∑ j = i + 1 26 f(j,1) f ( j , 1 ) =26-i
g(2) g ( 2 ) = 26i=1 ∑ i = 1 26 f(i,2) f ( i , 2 ) = 26i=1 ∑ i = 1 26 (26i) ( 26 − i ) =325

f(i,k) f ( i , k ) = 26j=i+1 ∑ j = i + 1 26 f(j,k1) f ( j , k − 1 )
g(k) g ( k ) = 26i=1 ∑ i = 1 26 f(i,k) f ( i , k ) = 26i=1 ∑ i = 1 26 26j=i+1 ∑ j = i + 1 26 f(j,k1) f ( j , k − 1 )


Java: version-1

import java.io.*;

public class Main {

    public static void main(String[] args) {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String str = null;
        int strLen;

        while (true){
            int value = 0;
            System.out.println("Enter the string:");
            try {
                str = br.readLine();
            } catch (IOException e) {
                e.printStackTrace();
            }

            if(str != null){
                strLen = str.length();
                //小于输入字符串长度的升序字符串总个数
                for(int i=1; ichar[] strToChar = str.toCharArray();
                //check the input string
                boolean invalidString = false;
                for(int p=0; p+1if(strToChar[p] >= strToChar[p+1]){
                        System.out.println("------------------");
                        System.out.println(str+" invalid!");
                        System.out.println("Please input a valid string!");
                        System.out.println("------------------");
                        invalidString = true;
                        continue;
                    }
                }
                if(invalidString){
                    continue;
                }

                int[] charToInt = new int[strLen];
                for(int j=0; jint)strToChar[j]-96;
                }

                /*//以小于输入字符串的第一个字符打头长度为strLen的升序字符串个数
                for(int l=1,r=charToInt[0]; l

                //将上面两个函数合为一个
                //以输入字符串相邻两个字符之间的字符打头长度为strLen-k的升序字符串个数
                int initial =1;
                for(int k=0; kfor(int l=initial,r=charToInt[k]; l1;
                }

                value++;//加上输入字符串本身占有的1
                System.out.println(value);//此时value的值即为输入字符串在字典中的编码
                System.out.println("------------------");
            }
        }
    }

    //以第i个字符打头的长度为k的升序字符串个数
    private static int numByLen(int i, int k){
        int tempNum = 0;
        if(k == 1)
            return 1;
        else
            for(int j=i+1; j<=26; j++){
                tempNum += numByLen(j,k-1);
            }
            return tempNum;
    }

    //长度为k的升序字符串总个数
    private static int totalNumByLen(int k){
        int tempTotalNum = 0;
        for(int i=1; i<=26; i++){
            tempTotalNum += numByLen(i,k);
        }
        return tempTotalNum;
    }
}

分析2

运用排列组合思想计算 f(i,k) f ( i , k ) g(k) g ( k )


Java: version-2

import java.io.*;

public class Main {

    public static void main(String[] args) {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String str = null;
        int strLen;

        while (true){
            int value = 0;
            System.out.println("Enter the string:");
            try {
                str = br.readLine();
            } catch (IOException e) {
                e.printStackTrace();
            }

            if(str != null){
                strLen = str.length();
                //小于输入字符串长度的升序字符串总个数
                for(int i=1; i26, i);
                }

                char[] strToChar = str.toCharArray();
                //check the input string
                boolean invalidString = false;
                for(int p=0; p+1if(strToChar[p] >= strToChar[p+1]){
                        System.out.println("------------------");
                        System.out.println(str+" invalid!");
                        System.out.println("Please input a valid string!");
                        System.out.println("------------------");
                        invalidString = true;
                        continue;
                    }
                }
                if(invalidString){
                    continue;
                }

                int[] charToInt = new int[strLen];
                for(int j=0; jint)strToChar[j]-96;
                }

                /*//以小于输入字符串的第一个字符打头长度为strLen的升序字符串个数
                for(int l=1,r=charToInt[0]; l

                //将上面两个函数合为一个
                //以输入字符串相邻两个字符之间的字符打头长度为strLen-k的升序字符串个数
                int initial = 1;
                for(int k=0; kfor(int l=initial,r=charToInt[k]; l26-l,strLen-k-1);
                    }
                    initial = charToInt[k]+1;
                }

                value++;//加上输入字符串本身占有的1
                System.out.println(value);//此时value的值即为输入字符串在字典中的编码
                System.out.println("------------------");
            }
        }
    }

    //计算组合数C(n,m)
    private static long C(int n, int m) {
        if( m > n )
            return 0;
        if( m > n/2 )
        {
            m = n - m;
        }
        return factorial(n, m)/factorial(m, m);
    }

    private static long factorial(int n, int m) {
        long sum = 1;

        while(m > 0 && n > 0) {
            sum = sum * n--;
            m--;
        }
        return sum;
    }
}

Sample input & output

Enter the string:
a
1
------------------
Enter the string:
b
2
------------------
Enter the string:
z
26
------------------
Enter the string:
ab
27
------------------
Enter the string:
ac
28
------------------
Enter the string:
av
47
------------------
Enter the string:
bc
52
------------------
Enter the string:
xyz
2951
------------------
Enter the string:
aa
------------------
aa invalid!
Please input a valid string!
------------------
Enter the string:
ba
------------------
ba invalid!
Please input a valid string!
------------------
Enter the string:
dijk
9771
------------------
Enter the string:

Reference

王晓东《计算机算法设计与分析》(第3版)P6-7

你可能感兴趣的:(Algorithm,Java,计算机算法设计与分析,计算机算法设计与分析)