pranjay-poddar / Data-Structures-And-Algorithms

Important data structure and algorithms codes and concept's open-source repository.
https://bit.ly/30DLzuJ
MIT License
48 stars 109 forks source link

Left_and_Right_Rotation_of_a_String.cpp #215

Closed malvika02 closed 2 years ago

malvika02 commented 2 years ago

Given a string of size n, write functions to perform the following operations on a string-

  1. Left (Or anticlockwise) rotate the given string by d elements (where d <= n)
  2. Right (Or clockwise) rotate the given string by d elements (where d <= n).