gpt4 book ai didi

php - C++ unordered_set 插入插入 PHP

转载 作者:行者123 更新时间:2023-11-28 01:56:35 28 4
gpt4 key购买 nike

我有一个 C++ 代码,我必须用 PHP 重写它。奇怪的事情发生在我身上,因为我是 PHP 程序员并且不太了解 C++。这是代码:

#include <iostream>
#include <unordered_set>
using namespace std;

int func(int choice) {

unordered_set<int> hset;
for (int counter = 0; counter < choice; counter++) {
hset.insert(counter);
if (counter % 2 == 0) {
hset.insert(counter);
hset.insert(counter + 1);
}
}
return hset.size();
}

int main(int argc, char** argv) {
cout << func(561);
return 0;
}

代码的输出是:562;

我写过这样的 PHP 代码:

function func($choice) {

$hset = [];

for ($counter = 0; $counter < $choice; $counter++) {
array_push($hset, $counter);
if ($counter % 2 == 0) {
array_push($hset, $counter);
array_push($hset, $counter + 1);
}
}

return count($hset);
}

echo func(561);

它返回 1123。请帮忙。

最佳答案

C++ 的 unordered_set不允许重复元素。由于您要将 countercounter+1 压入,因此您通常会尝试将同一元素压入两次,其中一次会被拒绝。

如果您希望具有与 PHP 类似的行为,请使用 std::vector相反,使用 emplace_back (或 push_back )添加您的元素。

如果你想走另一条路,那么在 PHP 中你可以使用 array_unique

关于php - C++ unordered_set 插入插入 PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40981518/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com