华为笔试题

题目描述

将一段压缩后的字符串解压缩,并且排序输出。

解压规则:每个字符串后边跟一个数字,表示这个字符串的重复数字

                  将每个字符串的字符重复次数升序排序,并输出结果。

例如:a3b2,输出结果为bbaaa

思路:

将每个字符串和数字分别取出存到两个数组

对这两个数组进行排序

最后进行重复的拼接工作。

程序:

public class Dzip {

    public static void main(String[] args) {
        String str1 = "b10c13abc3";
        System.out.println(decompressChar(str1));
    }

    private static String decompressChar(String str) {
        StringBuilder sb = new StringBuilder();
        char[] chars = str.toCharArray();
        int count = 0;
        StringBuilder temp = new StringBuilder();
        String aaa[]=new String[str.length()/2];
        int num[]=new int[str.length()/2];
        int k=0;
        for(int i = 0, n = chars.length; i < n; i++) {
            if((chars[i] + "").matches("[a-z]")){
                temp.append(chars[i]);
                continue;
                //
            }
            else{aaa[k]=temp.toString();}

             if((chars[i] + "").matches("[0-9]")) {
                count = count * 10 + Integer.parseInt(chars[i] + "");
                if(i!=chars.length-1&&(chars[i+1] + "").matches("[0-9]"))
                    continue;
                else{num[k]=count;}

            }

           k=k+1;
            count=0;
            temp=new StringBuilder();


        }
        for(int i=0;inum[j+1]){
                    int temp1=num[j];
                    num[j]=num[j+1];
                    num[j+1]=temp1;
                    String tempstr=aaa[j];
                    aaa[j]=aaa[j+1];
                    aaa[j+1]=tempstr;
                }
            }
        }

        for(int j = 0; j < aaa.length; j++) {
            for(int i=0;i 
  

 

你可能感兴趣的:(编程题,在线编程)