-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrearrange.cpp
More file actions
35 lines (32 loc) · 954 Bytes
/
rearrange.cpp
File metadata and controls
35 lines (32 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// This function wants you to modify the given input
// array and no need to return anything
// arr: input array
// n: size of array
//Function to rearrange the array elements alternately.
/*Given a sorted array of positive integers. Your task is to rearrange the array elements alternatively
i.e first element should be max value, second should be min value, third should be second max, fourth
should be second min and so on.*/
void rearrange(long long *arr, int n)
{
// Your code here
int l=0; int r=n-1;
int mx=arr[n-1]+1;
for(int i=0;i<n;i++)
{
if(i%2==0)
{
int a=(arr[r]%mx);
arr[i]=mx*a+arr[i];
r--;
}
else
{
int a=(arr[l]%mx);
arr[i]=a*mx+arr[i];
l++;
}
}
for(int i=0;i<n;i++)
{
arr[i]=arr[i]/mx;
}