如何在不更改其键的情况下增加哈希表的特定值?

时间:2019-05-31 07:11:48

标签: c++ arrays algorithm hash

我正在遍历数字数组(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]();

2 个答案:

答案 0 :(得分:2)

您可以在适当位置增加值

hash[ar[i]]++;

也:

// Not true:
auto hash=new int[10];   //here the value is initialized to zero

您必须添加一个初始化程序:

auto hash=new int[10]();   //here the value is initialized to zero

参考:

  

如果type是数组类型,则初始化对象数组。

     
      
  • 如果没有初始化程序,则每个元素都将默认初始化
  •   
  • 如果初始化器是一对空括号,则每个元素都将被值初始化。
  •   

https://en.cppreference.com/w/cpp/language/new

此外,实际上并不需要分配堆,您可以简单地使用int hash[10] = {0}std::array<int, 10> hash; hash.fill(0)

答案 1 :(得分:0)

您可以使用以下代码行:

hash[ar[i]] += 1