22

如何根据结构中的某些字段获取 C++ 中结构向量中的最小或最大元素?

例如:

struct Size {
    int width, height;
};
vector<Size> sizes;

现在我想根据宽度解决这个问题并为此创建一个新向量。然后根据高度排序并为此创建一个新向量。

4

5 回答 5

20

在 C++11 中,您可以使用std::minmax_element()标准函数,它(给定一对迭代器)和可能的自定义比较器(允许您定义排序所基于的字段)将返回一个迭代器到最小元素和最大元素的迭代器,打包在std::pair.

例如:

#include <algorithm> // For std::minmax_element
#include <tuple> // For std::tie
#include <vector> // For std::vector
#include <iterator> // For global begin() and end()

std::vector<Size> sizes = { {4, 1}, {2, 3}, {1, 2} };

decltype(sizes)::iterator minEl, maxEl;
std::tie(minEl, maxEl) = std::minmax_element(begin(sizes), end(sizes),
    [] (Size const& s1, Size const& s2)
    {
        return s1.width < s2.width;
    });

这是一个活生生的例子

于 2013-05-27T11:46:39.627 回答
19

您可以使用std::min_elementstd::max_element合适的仿函数:

bool cmp(const Size& lhs, const Size& rhs)
{
  return lhs.width < rhs.width;
}

然后

auto min_it = std::min_element(sizes.begin(), sizes.end(), cmp);
auto max_it = std::max_element(sizes.begin(), sizes.end(), cmp);

在 C++11 中,您可以替换cmp为 lambda 表达式。

另见std::minmax_element

于 2013-05-27T11:46:53.143 回答
10
vector<Size> sizes;
...
vector<Size> sortedByWidths(sizes);
vector<Size> sortedByHeights(sizes);
sort(sortedByWidths.begin(), sortedByWidths.end(), 
    [](Size s1, Size s2) {return s1.width < s2.width;});
sort(sortedByHeights.begin(), sortedByHeights.end(), 
    [](Size s1, Size s2) {return s1.height< s2.height;});
于 2013-05-27T11:49:25.513 回答
4

Solution using std::minmax_element with lambda expression:

#include <iostream>
#include <vector>

struct Size {
    int width, height;
};

int main()
{
     std::vector<Size> sizes;

     sizes.push_back({4,1});
     sizes.push_back({2,3});
     sizes.push_back({1,2});

     auto minmax_widths = std::minmax_element(sizes.begin(), sizes.end(),
         [] (Size const& lhs, Size const& rhs) {return lhs.width < rhs.width;});
     auto minmax_heights = std::minmax_element(sizes.begin(), sizes.end(),
         [] (Size const& lhs, Size const& rhs) {return lhs.height < rhs.height;});

     std::cout << "Minimum (based on width): " << minmax_widths.first->width << std::endl;
     std::cout << "Maximum (based on width): " << minmax_widths.second->width << std::endl;

     std::cout << "Minimum (based on height): " << minmax_heights.first->height << std::endl;
     std::cout << "Maximum (based on height): " << minmax_heights.second->height << std::endl;
}
于 2014-09-28T23:18:08.117 回答
2

std::min/std::max/std::minmax _element与比较器一起 使用。http://en.cppreference.com/w/cpp/algorithm/min_element

于 2013-05-27T11:46:20.610 回答