Given a string str, the task is to perform the following type of queries on the given string:
- (1, K): Left rotate the string by K characters.
- (2, K): Print the Kth character of the string.
Examples:
Input: str = “abcdefgh”, q[][] = {{1, 2}, {2, 2}, {1, 4}, {2, 7}}
Output:
d
e
Query 1: str = “cdefghab”
Query 2: 2nd character is d
Query 3: str = “ghabcdef”
Query 4: 7th character is e
Input: str = “abc”, q[][] = {{1, 2}, {2, 2}}
Output:
a
Approach: The main observation here is that the string doesn’t need to be rotated in every query instead we can create a pointer ptr pointing to the first character of the string and which can be updated for every rotation as ptr = (ptr + K) % N where K the integer by which the string needs to be rotated and N is the length of the string. Now for every query of the second type, the Kth character can be found by str[(ptr + K – 1) % N].
Below is the implementation of the above approach:
Python3
size = 2
def performQueries(string, n, queries, q) :
ptr = 0 ;
for i in range (q) :
if (queries[i][ 0 ] = = 1 ) :
ptr = (ptr + queries[i][ 1 ]) % n;
else :
k = queries[i][ 1 ];
index = (ptr + k - 1 ) % n;
print (string[index]);
if __name__ = = "__main__" :
string = "abcdefgh" ;
n = len (string);
queries = [[ 1 , 2 ], [ 2 , 2 ],
[ 1 , 4 ], [ 2 , 7 ]];
q = len (queries);
performQueries(string, n, queries, q);
|
Time Complexity: O(Q) , Where Q is the number of queries
Auxiliary Space: O(1)
Please refer complete article on Queries for rotation and Kth character of the given string in constant time for more details!
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!
Last Updated :
09 Jun, 2022
Like Article
Save Article