【Leetcode】482. License Key Formatting

本文介绍了一种算法,用于格式化软件许可密钥,通过移除原有不规范的破折号,并将所有字符转为大写,再按指定数量分组,使用破折号分隔。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

482. License Key Formatting

Now you are given a string S, which represents a software license key which we would like to format. The string S is composed of alphanumerical characters and dashes. The dashes split the alphanumerical characters within the string into groups. (i.e. if there are M dashes, the string is split into M+1 groups). The dashes in the given string are possibly misplaced.

We want each group of characters to be of length K (except for possibly the first group, which could be shorter, but still must contain at least one character). To satisfy this requirement, we will reinsert dashes. Additionally, all the lower case letters in the string must be converted to upper case.

So, you are given a non-empty string S, representing a license key to format, and an integer K. And you need to return the license key formatted according to the description above.

Example 1:

Input: S = "2-4A0r7-4k", K = 4

Output: "24A0-R74K"

Explanation: The string S has been split into two parts, each part has 4 characters.

Example 2:

Input: S = "2-4A0r7-4k", K = 3

Output: "24-A0R-74K"

Explanation: The string S has been split into three parts, each part has 3 characters except the first part as it could be shorter as said above.

Note:

  1. The length of string S will not exceed 12,000, and K is a positive integer.
  2. String S consists only of alphanumerical characters (a-z and/or A-Z and/or 0-9) and dashes(-).
  3. String S is non-empty.

Subscribe to see which companies asked this question

题目大意:题目大概说的是给你一个字符串,需要你把字符串全部转换成固定的格式。其中,给你一个整数K,将给定的字符串中的字符每K个为一组,之间用“-”分隔。其中第一个字符的长度可以小于K。

思路分析:

预处理:想法很简单先把字符串中“-”全部去掉,然后把字符串中的字符转换为大写的形式。

思路一:

利用JAVA中重载的“+”不断地拼凑char + String = String

缺点:每次拼接都创建了一个新的String对象,严重影响了算法效率。

思路二:

创建一个char[],将计算好的输入字符串对应的字母填进去,最后将char[]->String输出就行了

优点:只需要创建一个char[],提高了执行速度。

代码:


思路一:

public String licenseKeyFormatting(String S, int K) {
        S = S.replace("-","");
        if(S.length() == 0){
            return "";
        }
        S = S.toUpperCase();
        String res = "";
        int count=0;
        while(S.length()-1-count>=0){
            for(int i=0;i<K&&S.length()-1-count>=0;i++){
                res = S.charAt(S.length()-1-count)+res;
                count++;
            }
            res = "-"+res;
        }
        return res.substring(1,res.length());
    }

思路二:

public String licenseKeyFormatting(String S, int K) {
        S = S.replace("-","");
        if(S.length() == 0){
            return "";
        }
        S = S.toUpperCase();
        char[] res = new char[S.length()+(int)Math.ceil(1.0*S.length()/K)-1];
        int aLength = res.length-1;
        int count=0;
        while(aLength>=K){
            for(int i=0;i<K;i++){
                res[aLength--] = S.charAt(S.length()-1-count++);
            }
            res[aLength--]='-';
        }
        for(int i=0;i<K&&aLength>=0;i++){
            res[aLength--] = S.charAt(S.length()-1-count++);
        }
        return new String(res);
    }


运行结果:

思路一:


思路二:


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值