有人可以为我解释一下这个函数的最后一个参数吗?
它是哈希的构造函数,但我不明白最后一个参数。它在做什么?
std::fill(hash_table_, hash_table_ + HASH_TABLE_SIZE, (node *)NULL)
你能以某种方式在 for 循环中执行此操作吗?
for (int i = 0; i < HASH_TABLE_SIZE; i++){
//whatever that last argument is doing
hash_table_++;
}
试图了解 fill 如何与 hash 一起使用。谢谢!
it's a constructor for a hash, but i don't understand the last argument. what is it doing?
std::fill(hash_table_, hash_table_ + HASH_TABLE_SIZE, (node *)NULL)
can you just do this in a for loop somehow?
for (int i = 0; i < HASH_TABLE_SIZE; i++){
//whatever that last argument is doing
hash_table_++;
}
trying to understand how fill works with hash. thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
该行用 NULL 填充哈希表。
是的,您也可以使用循环,但它的工作量更大,而且更容易出错。
That line fills your hash table with NULLs.
Yes, you can also use a loop, but it is more work and more error-prone.
它将整个哈希表设置为最后一个参数(NULL),循环如下:
It sets the whole hash table to the last argument (NULL), a loop for that will be:
是否使用指向
node
的NULL
指针填充哈希表。Is it filling a hash table with
NULL
pointers tonode
.