左旋轉字串

2021-09-26 02:36:25 字數 832 閱讀 5284

題目描述

組合語言中有一種移位指令叫做迴圈左移(rol),現在有個簡單的任務,就是用字串模擬這個指令的運算結果。對於乙個給定的字串行s,請你把其迴圈左移k位後的序列輸出。例如,字串行s=」abcxyzdef」,要求輸出迴圈左移3位後的結果,即「xyzdefabc」。是不是很簡單?ok,搞定它!

思路:這道題考查的核心是靈活利用字串翻轉。假設字串abcdef,n=3,設x=abc,y=def,所以字串可以表示成xy,如題幹,問如何求得yx。假設x的翻轉為xt,xt=cba,同理yt=fed,那麼yx=(xtyt)t,三次翻轉後可得結果。

def reverse(self, s, begin, end):

if not s:

return none

while begin <= end:

s[begin], s[end] = s[end], s[begin]

begin += 1

end -= 1

return s

def leftrotatestring(self, s, n):

if not s:

return ""

lists = list(s)

if n>len(s):

return self.reverse(lists,0,len(s)-1)

else:

self.reverse(lists,0,n-1)

self.reverse(lists,n,len(s)-1)

self.reverse(lists,0,len(s)-1)

return "".join(lists)

左旋轉字串

題目 定義字串的左旋轉操作 把字串前面的若干個字元移動到字串的尾部。如把字串abcdef左旋轉2位得到字串cdefab。請實現字串左旋轉的函式。要求時間對長度為n的字串操作的複雜度為o n 輔助記憶體為o 1 思想 旋轉三次 include include using namespace std v...

左旋轉字串

package com.string 旋轉字串 q 26 左旋轉字串 題目 定義字串的左旋轉操作 把字串前面的若干個字元移動到字串的尾部。如把字串abcdef左旋轉2位得到字串cdefab。請實現字串左旋轉的函式。要求時間對長度為n的字串操作的複雜度為o n 輔助記憶體為o 1 public cla...

左旋轉字串

如abc,左旋1得到bca,左旋2得到cab o n k 的演算法 include using namespace std include include include include include include include include include include int main...