Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++에서 배열을 축소형(해싱)으로 변환

<시간/>

이 자습서에서는 해싱을 사용하여 배열을 축소된 형식으로 변환하는 프로그램에 대해 설명합니다.

이를 위해 배열이 제공됩니다. 우리의 임무는 0에서 n-1 범위의 요소만 포함하도록 주어진 배열을 축소된 형태로 변환하는 것입니다.

예시

#include <bits/stdc++.h>
using namespace std;
//converting array to its reduced form
void convert(int arr[], int n){
   // copying the elements of array
   int temp[n];
   memcpy(temp, arr, n*sizeof(int));
   sort(temp, temp + n);
   //creating a hash table
   unordered_map<int, int> umap;
   int val = 0;
   for (int i = 0; i < n; i++)
   umap[temp[i]] = val++;
   //putting values in the hash table
   for (int i = 0; i < n; i++)
   arr[i] = umap[arr[i]];
}
void print_array(int arr[], int n) {
   for (int i=0; i<n; i++)
      cout << arr[i] << " ";
}
int main(){
   int arr[] = {10, 20, 15, 12, 11, 50};
   int n = sizeof(arr)/sizeof(arr[0]);
   cout << "Given Array :\n";
   print_array(arr, n);
   convert(arr , n);
   cout << "\nConverted Array:\n";
   print_array(arr, n);
   return 0;
}

출력

Given Array :
10 20 15 12 11 50
Converted Array:
0 4 3 2 1 5