Shifting Letters

本文深入探讨了一种处理字符串位移的算法,该算法通过应用一系列整数位移,对字符串中的字母进行重新排列。具体而言,对于输入的字符串S和整数数组shifts,算法会将第一个i+1个字母按shifts[i]的次数进行位移,最终返回经过所有位移操作后的字符串。文章还提供了一个示例,展示了如何从abc开始,通过三次位移操作得到rpl。

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

We have a string S of lowercase letters, and an integer array shifts.

Call the shift of a letter, the next letter in the alphabet, (wrapping around so that ‘z’ becomes ‘a’).

For example, shift(‘a’) = ‘b’, shift(‘t’) = ‘u’, and shift(‘z’) = ‘a’.

Now for each shifts[i] = x, we want to shift the first i+1 letters of S, x times.

Return the final string after all such shifts to S are applied.

Example 1:

Input: S = “abc”, shifts = [3,5,9]
Output: “rpl”
Explanation:
We start with “abc”.
After shifting the first 1 letters of S by 3, we have “dbc”.
After shifting the first 2 letters of S by 5, we have “igc”.
After shifting the first 3 letters of S by 9, we have “rpl”, the answer.
Note:

1 <= S.length = shifts.length <= 20000
0 <= shifts[i] <= 10 ^ 9

class Solution {
    public String shiftingLetters(String S, int[] shifts) {
          if(S==null||S.isEmpty())
            return S;
        StringBuilder sb=new StringBuilder(S);
        for(int i=0;i<sb.length();i++){
            for(int j=0;j<=i;j++){
               sb.setCharAt(j,(char)(((sb.charAt(j)-'a'+shifts[i])%26+'a')));
                
            }
        }
        return sb.toString();
    }
}
   

这道题使用StringBuffer时 时间超过限制Time Limit Exceeded,使用StringBuilder才能通过,通过的思路是在遍历shifts的时候,将它加到i之前的所有已经遍历过的字符上。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值