Given an integer K and an array arr[] of N integers which contains the ids of the opened apps in a system where
- arr[0] is the app currently in use
- arr[1] is the app which was most recently used and
- arr[N – 1] is the app which was least recently used.
The task is to print the contents of the array when the user using the system presses Alt + Tab exactly K number of times. Note that after pressing Alt + Tab key, app opening pointer will move through apps from 0th index towards right, depending upon the number of presses, so the app on which the press ends will shift to 0th index, because that will become the most recently opened app.
Examples:
Input: arr[] = {3, 5, 2, 4, 1}, K = 3
Output: 4 3 5 2 1
User want to switch to the app with id 4, it’ll become the currently active app and the previously active app (with id 3) will be the most recently used app.
Input: arr[] = {5, 7, 2, 3, 4, 1, 6}, K = 10
Output: 3 5 7 2 4 1 6
Approach: Get the index of the app to which the user wants to switch i.e. appIndex = K % N. Now, the current active app will be arr[appIndex] and all the other apps in the index range [0, appIndex – 1] will have to be shifted by 1 element towards the right.
Below is the implementation of the above approach:
C++14
#include <bits/stdc++.h>
using namespace std;
void mostRecentlyUsedApps( int * arr, int N, int K)
{
int app_index = 0;
app_index = (K % N);
int x = app_index, app_id = arr[app_index];
while (x > 0) {
arr[x] = arr[--x];
}
arr[0] = app_id;
}
void printArray( int * arr, int N)
{
for ( int i = 0; i < N; i++)
cout << arr[i] << " " ;
}
int main()
{
int K = 3;
int arr[] = { 3, 5, 2, 4, 1 };
int N = sizeof (arr) / sizeof (arr[0]);
mostRecentlyUsedApps(arr, N, K);
printArray(arr, N);
return 0;
}
|
Java
import java.io.*;
class GFG {
public static void main(String[] args)
{
int [] num = { 3 , 5 , 2 , 4 , 1 };
int size = num.length;
int d = 3 ;
int appIndex = d % size;
int appId = num[appIndex];
for ( int i = appIndex; i > 0 ; i--) {
num[i] = num[i - 1 ];
}
num[ 0 ] = appId;
for ( int i = 0 ; i < num.length; i++) {
System.out.print( " " + num[i]);
}
}
}
|
Python3
def mostRecentlyUsedApps(arr, N, K):
app_index = 0
app_index = (K % N)
x = app_index
app_id = arr[app_index]
while (x > 0 ):
arr[x] = arr[x - 1 ]
x - = 1
arr[ 0 ] = app_id
def printArray(arr, N):
for i in range (N):
print (arr[i], end = " " )
K = 3
arr = [ 3 , 5 , 2 , 4 , 1 ]
N = len (arr)
mostRecentlyUsedApps(arr, N, K)
printArray(arr, N)
|
C#
using System;
class GFG
{
static void mostRecentlyUsedApps( int []arr, int N, int K)
{
int app_index = 0;
app_index = (K % N);
int x = app_index, app_id = arr[app_index];
while (x > 0)
{
arr[x] = arr[--x];
}
arr[0] = app_id;
}
static void printArray( int []arr, int N)
{
for ( int i = 0; i < N; i++)
Console.Write(arr[i]+ " " );
}
static void Main()
{
int K = 3;
int []arr = { 3, 5, 2, 4, 1 };
int N = arr.Length;
mostRecentlyUsedApps(arr, N, K);
printArray(arr, N);
}
}
|
Javascript
<script>
function mostRecentlyUsedApps(arr, N, K) {
let app_index = 0;
app_index = (K % N);
let x = app_index, app_id = arr[app_index];
while (x > 0) {
arr[x] = arr[--x];
}
arr[0] = app_id;
}
function printArray(arr, N) {
for (let i = 0; i < N; i++)
document.write(arr[i] + " " );
}
let K = 3;
let arr = [3, 5, 2, 4, 1];
let N = arr.length;
mostRecentlyUsedApps(arr, N, K);
printArray(arr, N);
</script>
|
Time Complexity: O(N)