如何在c ++中使用数组作为函数的输入

时间:2013-02-13 00:34:04

标签: c++

在C ++中,是否可以将数组作为函数的输入。

1 个答案:

答案 0 :(得分:1)

很可能你可以用矢量完成所有这些。

#include <vector>

std::vector<int> function_name(const std::vector<int>& A, const std::vector<int>& B);