I have an array of the 26 English alphabet characters. Say:
char a[26] = ['a','b','c','d'.......so on till ....'z']
I am required to move the elements in the array in a circular manner (could be clockwise or anticlockwise).
I understand that there exist a data structure known as a Circular Array but it is unidirectional.
Say, I want to move each element in the array ahead by 3 elements then by new array should be:
char new[26] = ['x','y','z','a','b'... and so on till 'w']
But, I may also want to shift the elements backwards by say 2 elements, then my new array should be:
char new[26]=['c','d','e'....and so on... 'y','z','a','b']
All this should be done without using pointers (because I haven't read about pointers yet).
Is there a method to implement this?
I have searched a lot about circular arrays but I never realized how simple arrays can be used as circular arrays and have movement of elements both forward and backward. Can someone tell me if there is a method to do this?
The array size is fixed.
We are coding in C
You simply use modulus on the array
index
: