-3

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

4

1 回答 1

1

很可能你可以用向量来完成这一切。

#include <vector>

std::vector<int> function_name(const std::vector<int>& A, const std::vector<int>& B);
于 2013-02-13T00:35:42.423 回答