gpt4 book ai didi

c++ - std::sort 将数组指针设置为 null

转载 作者:行者123 更新时间:2023-11-27 22:45:27 24 4
gpt4 key购买 nike

我正在尝试使用 std::sort 函数对随机生成的数组进行排序,如下所示:

int *p = new int[n];

for (int i=0; i < n; ++i) {
std::random_device r;

std::default_random_engine e1(r());
std::uniform_int_distribution<int> uniform_dist(1, 6);
p[i]= uniform_dist(e1);

}

// Prints array (ok)
for (int i=0; i < n; ++i)
{
std::cout << p[i] << ' ';
}
std::cout << std::endl;

// P != NULL at this point
std::sort(&p, &p + n);
// P == NULL at this point

你知道为什么会这样吗?

最佳答案

std::sort(&p, &p + n);

此行会导致未定义的行为。 &p 是本地 p 指针对象的地址,不是该对象指向的数组位置。 &p + n 然后用本地对象的地址执行非法指针运算。

你应该这样做:

std::sort(p, p + n);

当然,所有这些最终都是徒劳的,因为无论如何你都应该使用 std::vector,然后它变成:

std::sort(begin(v), end(v));

关于c++ - std::sort 将数组指针设置为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43721094/

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