time limit exceeded in linear probing in hashing

85 Views Asked by At

I am learning how to implement linear probing in hash functions. I am getting error time limit exceeded for the code below how can I improve this code?

vector<int> linearProbing(int hashSize, int arr[], int sizeOfArray)
{
   vector<int> hash(hashSize,-1);
   for(int i=0;i<sizeOfArray;i++){
       int h = arr[i]%hashSize;
       for(int j=0;j<sizeOfArray;j++){
           if(hash[h]==-1 or arr[i]==hash[h]){
               hash[h]=arr[i];
               break;
           }
           else
               h=(h+1)%hashSize;
       }
    }
    return hash;
}

Constraints:
1 <= hashSize <= 100
1 <= sizeOfArray <= 100
0 <= arr[] <= 10^5

Expected time limit 2.28s
0

There are 0 best solutions below