有人可以为我解释一下这个函数的最后一个参数吗?

发布于 2024-12-09 06:19:56 字数 333 浏览 1 评论 0原文

它是哈希的构造函数,但我不明白最后一个参数。它在做什么?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

陌若浮生 2024-12-16 06:19:56

该行用 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.

始于初秋 2024-12-16 06:19:56

它将整个哈希表设置为最后一个参数(NULL),循环如下:

for (int i = 0; i < HASH_TABLE_SIZE; i++)
{
    *(hash_table_ + i) = (node *)NULL;
}

It sets the whole hash table to the last argument (NULL), a loop for that will be:

for (int i = 0; i < HASH_TABLE_SIZE; i++)
{
    *(hash_table_ + i) = (node *)NULL;
}
篱下浅笙歌 2024-12-16 06:19:56

我不明白最后一个论点。它在做什么?

std::fill(hash_table_, hash_table_ + HASH_TABLE_SIZE, (节点 *)NULL)

是否使用指向 nodeNULL 指针填充哈希表。

你能以某种方式在 for 循环中执行此操作吗?

for (int i = 0; i < HASH_TABLE_SIZE; i++){
    hash_table_[i] = (node*)NULL;
}

i don't understand the last argument. what is it doing?

std::fill(hash_table_, hash_table_ + HASH_TABLE_SIZE, (node *)NULL)

Is it filling a hash table with NULL pointers to node.

can you just do this in a for loop somehow?

for (int i = 0; i < HASH_TABLE_SIZE; i++){
    hash_table_[i] = (node*)NULL;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文