gpt4 book ai didi

c++ - 高效获取 C++ 链表中最大的 3 个整数(未排序)

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

我听说有一些标准函数确实给出了数组的最大 n 个整数,但是链表怎么样?

我认为解决方案是使用几个 for 循环遍历链表,但似乎 C++ 库中可能有更简单的解决方案。

谢谢。

最佳答案

如果你不能使用其他数据结构,我会这样做:

typedef std::list<int> IntList;
InstList list = <your_values>;

int top[3];
for (size_t i = 0; i < 3; i++)
top[i] = std::numeric_limits<int>::min();

IntList::iterator it, end;
for (it = list.begin(), end = list.end(); it != end; ++it) {
const int& value = *it;
if (value > top[2]) {
top[0] = top[1];
top[1] = top[2];
top[2] = value;
} else if (value > top[1]) {
top[0] = top[1];
top[1] = value;
} else if (value > top[0]) {
top[0] = value;
}
}

关于c++ - 高效获取 C++ 链表中最大的 3 个整数(未排序),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15373937/

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