C 11 提供了多種容器迭代方法,包括基於範圍的循環和 std::for_each。然而,當迭代多個相同大小的容器時,哪種方法最有效,例如:
for(unsigned i = 0; i < containerA.size(); ++i) { containerA[i] = containerB[i]; }
建議的方法是使用迭代索引基於範圍的for 循環:
for(unsigned i : indices(containerA)) { containerA[i] = containerB[i]; }
其中索引是一個簡單的包裝函數,可為索引產生惰性範圍。此方法與手動 for 迴圈的效率相符。
對於頻繁出現此模式,請考慮使用zip 函數建立一系列組合成對元素的元組:
for (auto& [a, b] : zip(containerA, containerB)) { a = b; }
這種方法簡化了程式碼並增強了可讀性。
以上是在 C 中同時迭代多個容器的最有效方法是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!