Rotate array
- Get link
- X
- Other Apps
Rotate array
Send Feedback
You have been given a random integer array/list(ARR) of size N. Write a function that rotates the given array/list by D elements(towards the left).
Note:
Change in the input array/list itself. You don't need to return or print the elements.
Input format :
The first line contains an Integer 't' which denotes the number of test cases or queries to be run. Then the test cases follow.
First line of each test case or query contains an integer 'N' representing the size of the array/list.
Second line contains 'N' single space separated integers representing the elements in the array/list.
Third line contains the value of 'D' by which the array/list needs to be rotated.
Output Format :
For each test case, print the rotated array/list in a row separated by a single space.
Output for every test case will be printed in a separate line.
Constraints :
1 <= t <= 10^4
0 <= N <= 10^6
0 <= D <= N
Time Limit: 1 sec
Sample Input 1:
1
7
1 2 3 4 5 6 7
2
Sample Output 1:
3 4 5 6 7 1 2
Sample Input 2:
2
7
1 2 3 4 5 6 7
0
4
1 2 3 4
2
Sample Output 2:
1 2 3 4 5 6 7
3 4 1 2
#include<bits/stdc++.h>void rotate(int *input, int d, int n){ //Write your code here int i = 0; int j = n - 1; while(i<j){ // int storage = input[i]; // input[i] = input[j]; // input[j] = storage; // i++; // j--; swap(input[i],input[j]); i++; j--; } // rreverse last part j = n-1; i = n-d; while(i<j){ int storage = input[i]; input[i] = input[j]; input[j] = storage; i++; j--; } // reverse front part j = n-(d+1); i = 0 ; while(i<j){ int storage = input[i]; input[i] = input[j]; input[j] = storage; i++; j--; } }
#include <iostream>using namespace std;
#include "solution.h"
int main(){ int t; cin >> t; while (t--) { int size; cin >> size;
int *input = new int[size];
for (int i = 0; i < size; ++i) { cin >> input[i]; }
int d; cin >> d;
rotate(input, d, size);
for (int i = 0; i < size; ++i) { cout << input[i] << " "; } delete[] input; cout << endl; }
return 0;}
- Get link
- X
- Other Apps
Comments
Post a Comment