Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

โปรแกรมสำหรับแอพ K ที่ใช้ล่าสุด (MRU) ใน C++


กำหนดหมายเลข k และอาร์เรย์ arr[n] ซึ่งประกอบด้วยองค์ประกอบจำนวนเต็มจำนวน n รายการซึ่งจัดเก็บรหัสของแอปที่เปิดอยู่ในระบบ งานคือการแสดงแอพที่ใช้ล่าสุดจำนวน k เช่นเมื่อเรากด alt+tab จะแสดงแอพล่าสุดทั้งหมดและล่าสุดก่อนแอพล่าสุด ตำแหน่งของทุกๆ id แสดงถึงแอปต่างๆ ในระบบ -

ดังต่อไปนี้ −

  • Id in arr[0] คือรหัสของแอปที่กำลังใช้งานอยู่
  • Id in arr[1] คือรหัสของแอปที่ใช้ล่าสุด
  • Id in arr[n-1] คือ id ของแอปที่มีการใช้งานน้อยที่สุด

หมายเหตุ − เมื่อเรากดแป้น Alt+Tab จะมีตัวชี้ซึ่งจะเลื่อนผ่านแอปที่เปิดอยู่ทั้งหมดโดยเริ่มจากดัชนี 0 แอปที่กำลังใช้งานอยู่

ตัวอย่าง

Input: arr[] = {1, 2, 3, 4, 5}, k=2
Output: 3 1 2 4 5
Explanation: We wished to switched the app with id 3, so it will become the currently
active app and other active apps will be the most recently used now

Input: arr[] = {6, 1, 9, 5, 3}, k=3
Output: 5 6 1 9 3

แนวทางที่เราจะใช้ในการแก้ปัญหาข้างต้น

  • นำอาร์เรย์ arr[n] และ k เป็นอินพุต
  • รับดัชนี เช่น k ของแอปที่ผู้ใช้ต้องการเปลี่ยน
  • ทำให้ id ที่ดัชนี k เป็นปัจจุบัน จากนั้นจึงจัดเรียงตามที่อยู่ในลำดับ
  • พิมพ์ผลลัพธ์

อัลกอริทึม

Start
Step 1-> declare the function to find k most recently used apps
   void recently(int* arr, int size, int elem)
   Declare int index = 0
   Set index = (elem % size)
   Declare and set int temp = index, id = arr[index]
   Loop While temp > 0
      Set arr[temp] = arr[--temp]
   End
   Set arr[0] = id
Step 2-> declare function to print array elements
   void print(int* arr, int size)
   Loop For i = 0 and i < size and i++
      Print arr[i]
   End
Step 3-> In main()
   Declare and set for elements as int elem = 3
   Declare array as int arr[] = { 6, 1, 9, 5, 3 }
   Calculate size as int size = sizeof(arr) / sizeof(arr[0])
   Call recently(arr, size, elem)
   Call print(arr, size)
Stop

ตัวอย่าง

#include <bits/stdc++.h>
using namespace std;
// Function to update the array in most recently used fashion
void recently(int* arr, int size, int elem) {
   int index = 0;
   index = (elem % size);
   int temp = index, id = arr[index];
   while (temp > 0) {
      arr[temp] = arr[--temp];
   }
   arr[0] = id;
}
//print array elements
void print(int* arr, int size) {
   for (int i = 0; i < size; i++)
   cout << arr[i] << " ";
}
int main() {
   int elem = 3;
   int arr[] = { 6, 1, 9, 5, 3 };
   int size = sizeof(arr) / sizeof(arr[0]);
   recently(arr, size, elem);
   cout<<"array in most recently used fashion : ";
   print(arr, size);
   return 0;
}

ผลลัพธ์

array in most recently used fashion : 5 6 1 9 3