LeetCode541. Reverse String II

编程入门 行业动态 更新时间:2024-10-19 14:36:50

LeetCode541. <a href=https://www.elefans.com/category/jswz/34/1739405.html style=Reverse String II"/>

LeetCode541. Reverse String II

文章目录

    • 一、题目
    • 二、题解

一、题目

541. Reverse String II

Given a string s and an integer k, reverse the first k characters for every 2k characters counting from the start of the string.

If there are fewer than k characters left, reverse all of them. If there are less than 2k but greater than or equal to k characters, then reverse the first k characters and leave the other as original.

Example 1:

Input: s = “abcdefg”, k = 2
Output: “bacdfeg”
Example 2:

Input: s = “abcd”, k = 2
Output: “bacd”

Constraints:

1 <= s.length <= 104
s consists of only lowercase English letters.
1 <= k <= 104

二、题解

class Solution {
public:string reverseStr(string s, int k) {int n = s.length();//循环处理2k个单位for(int i = 0;i < n;i += 2 * k){if(i + k <= n){reverse(s.begin() + i,s.begin() + i + k);}else reverse(s.begin() + i,s.end());}return s;}
};

更多推荐

LeetCode541. Reverse String II

本文发布于:2023-11-16 15:49:54,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1626805.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:Reverse   II   String

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!