C function to rotate a string by a given number to the right or to the left. When a character is rotated past the end or the beginning of a string depending on the direction, it should wrap around
|
|
Results:
|
||
|
|
|
|
I'd do something like this:
provided of course that r<len, len is at least 1, you know, normal sanitation checks. |
||||
|
|
|
given a string rotate left is equivalent to
rotate right is equivalent to
Now you just need a reverse function. Update:
I thought of how you can use mod's to make you always rotate in the right direction depending on the sign of e.g.
going through the various cases if n == 5 and length = 10, mod = 5 if n == 16 and length = 10, mod = 6 -- rotating left by 16 = rotating left by 6 if n == 0 and length = anything, mod = 0 if n == -1 and length = 10, mod = 9 -- rotating right by 1 is the same as rotating left by 9 if n == -15 and length = 9, mod = 3 -- rotating right by 15 is the same as rotating left by 3 |
||||||||||||
|
