I have an algorithm and I'd like to translate my code so instead of using arrays I'd like to use vectors.
How would you translate this: (the side of b + j and a)
find_kth(a, b + j, i, size_b - j, k - j);
where
int find_kth(int a[], int b[], int size_a, int size_b, int k);
into
int find_kth(const vector<int>& a, const vector<int>& b, int size_a, int size_b, int k);
It must be equivalent so calls like this return the same value as if I were using arrays:
min(a[0], b[0]);
A standard way would be to use iterator ranges instead:
This comes in handy, since you need to operate only on a section of a vector. You don't need to split the vector with this approach.
Improved signature based on SergeyA's comment:
You can also add another template parameter, or use
std::iterator_traits
to get thevalue_type
, instead of havingint
.