首頁 >後端開發 >C++ >如何在 C 11 中實作 Python 的多範圍「zip」功能?

如何在 C 11 中實作 Python 的多範圍「zip」功能?

Barbara Streisand
Barbara Streisand原創
2024-12-13 17:18:11474瀏覽

How Can I Achieve Python's `zip` Functionality with Multiple Ranges in C  11?

C 11 的 Sequence-zip 函數?

C 11 中基於範圍的 for 迴圈在程式碼可讀性和簡潔性方面提供了顯著改進。它允許您使用簡化的語法迭代一系列元素,如下所示:

for (auto x : Y) {}

但是,此語法並不會直接擴展到循環多個並發範圍,如 Python 的 zip 函數。

Boost 解

在 C 11 之前,Boost 函式庫提供了兩種方法來模擬 Python 的zip功能:

Boost.Range.Combine:

#include <boost/range/combine.hpp>

std::vector<int> a {4, 5, 6};
double b[] = {7, 8, 9};
std::list<std::string> c {"a", "b", "c"};

for (auto tup : boost::combine(a, b, c, a)) {
    int x, w;
    double y;
    std::string z;
    boost::tie(x, y, z, w) = tup;
    printf("%d %g %s %d\n", x, y, z.c_str(), w);
}

Boost.Iterator.ZipIterator:

#include <boost/iterator/zip_iterator.hpp>
#include <boost/range.hpp>

template <typename... T>
auto zip(T&&... containers) -> boost::iterator_range<boost::zip_iterator<decltype(boost::make_tuple(std::begin(containers)...))>>
{
    auto zip_begin = boost::make_zip_iterator(boost::make_tuple(std::begin(containers)...));
    auto zip_end = boost::make_zip_iterator(boost::make_tuple(std::end(containers)...));
    return boost::make_iterator_range(zip_begin, zip_end);
}

std::vector<int> a {4, 5, 6};
double b[] = {7, 8, 9};
std::list<std::string> c {"a", "b", "c"};

for (auto tup : zip(a, b, c, a)) {
    int x, w;
    double y;
    std::string z;
    std::tie(x, y, z, w) = tup;
    printf("%d %g %s %d\n", x, y, z.c_str(), w);
}

以上是如何在 C 11 中實作 Python 的多範圍「zip」功能?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn