Я перебираю массив чисел (0-9) и хочу сохранить там вхождение в хеш-таблицу с этим.
int ar[size]={0,2,0,1,4,6,8 ........ 8,6,7}; // array
auto hash=new int[10]; //here the value is initialized to zero
for(int i=0;i<size;i++)
{
//here i want to store the time a number occurred in the array with
keys as number itself
hash[ar[i]] = **valueof(hash[ar[i]])+1** // i want to do this
}
Редактировать
auto hash=new int[10]();