JZ43 左旋转字符串

左旋转字符串

对于一个给定的字符序列S,请你把其循环左移K位后的序列输出。例如,字符序列S=”abcXYZdef”,要求输出循环左移3位后的结果,即“XYZdefabc”。

思路:

 使用三步反转法

1)使用O(n)的时间,直接遍历找到反转的中间元素;

2)将中间元素前面的进行反转,再将后面的元素进行反转,这里需要使用交换操作比如swap的功能;

3)最后将整个数组进行反转。

func LeftRotateString( str string ,  n int ) string {
    // write code here
    if len(str) == 0 {
        return ""
    }

    n = n % len(str)

    res := swap([]byte(str), 0, n - 1)
    res = swap(res, n , len(str) - 1)
    res =  swap(res, 0, len(str) - 1)

    return string(res)
}

func swap(bytesStr []byte, start, end int) []byte {
    for start < end {
        bytesStr[start], bytesStr[end] = bytesStr[end], bytesStr[start]
        start++
        end--
    }

    return bytesStr
}

  

posted @ 2021-04-10 18:03  zqlucky  阅读(49)  评论(0编辑  收藏  举报