Created
February 26, 2018 18:17
-
-
Save gallirohik/0994926c4987f538bec1fd7490c579f1 to your computer and use it in GitHub Desktop.
rotate array towards right by d positions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
void reverse(int *arr,int start,int end) | |
{ | |
int temp,i,j; | |
for(i=start,j=end;i<j;i++,j--) | |
{ | |
temp=arr[i]; | |
arr[i]=arr[j]; | |
arr[j]=temp; | |
} | |
} | |
rotate_right_by_d(int *arr,int n,int d) | |
{ | |
d=d%n; | |
reverse(arr,0,d-1); | |
reverse(arr,d,n-1); | |
reverse(arr,0,n-1); | |
} | |
int main() | |
{ | |
int *arr,i,d,n; | |
arr=(int*)malloc(100*sizeof(int)); | |
scanf("%d",&n); | |
for(i=0;i<n;i++) | |
{ | |
scanf("%d",&arr[i]); | |
} | |
printf("Enter no of rotations:"); | |
scanf("%d",&d); | |
rotate_right_by_d(arr,n,d); | |
for(i=0;i<n;i++) | |
printf(" %d",arr[i]); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment