码迷,mamicode.com
首页 > 其他好文 > 详细

【字符串】848. 字母移位

时间:2020-05-04 13:18:50      阅读:49      评论:0      收藏:0      [点我收藏+]

标签:tin   size   turn   style   for   solution   shift   src   class   

题目:

技术图片

 

 

解答:

 1 class Solution {
 2 public:
 3     string shiftingLetters(string S, vector<int>& shifts) 
 4     {
 5         int size = (int)S.size();
 6         int cnt = 0;
 7         for (int i = size - 1; i >= 0;i--) 
 8         {
 9             cnt += shifts[i] % 26;
10             int index = S[i] - a + cnt;
11             S[i] = (index % 26) + a;
12         }
13         return S;
14     }
15 };

 

【字符串】848. 字母移位

标签:tin   size   turn   style   for   solution   shift   src   class   

原文地址:https://www.cnblogs.com/ocpc/p/12826186.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!