TITLE:-
Check Array Rotation
PROBLEM:-
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.
For each test case, print the value of 'K' or the index from which which the array/list has been rotated.
Output for every test case will be printed in a separate line.
1 <= t <= 10^2
0 <= N <= 10^5
Time Limit: 1 sec
1
6
5 6 1 2 3 4
2
2
5
3 6 8 9 10
4
10 20 30 1
0
3
SOLUTION:-
#include <iostream>
using namespace std;
int arrayRotateCheck(int *input, int size)
{
//Write your code here
int pos=0,min=input[0];
for(int i=1;i<size;i++)
{
if(min>input[i])
{
min=input[i];
pos=i;
}
}
return pos;
}
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];
}
cout << arrayRotateCheck(input, size) << endl;
delete[] input;
}
return 0;
}
This is dummy text. It is not meant to be read. Accordingly, it is difficult to figure out when to end it. But then, this is dummy text. It is not meant to be read. Period.
If you have any doubts then please let me know... ConversionConversion EmoticonEmoticon