Вы не можете передать foo[]
в функцию.Также bisection_01()
возвращает void
, который нельзя вставить в ostream
;
Этот код компилируется и, кажется, выполняет то, что вы хотите:
#include <iostream>
#include <array>
using namespace std;
template <class T, size_t size>
void bisection_01(std::array<T,size> foo)
{
int low, high,mid;
low = 0;
high = (size-1);
mid = (high+low)/2;
while(low!=high)
{
if (foo[mid]==0) {
if (foo[mid + 1] == 0)
low = mid;
else
std::cout << "The change has occured from " << mid + 1 << " to " << mid + 2;
}
if (foo[mid]==1) {
if (foo[mid - 1] == 1)
high = mid;
else
std::cout << "The change has occured from " << mid << " to " << mid + 1;
}
}
}
int main()
{
std::array<int,7> foo{0, 0, 0, 0, 1, 1, 1};
bisection_01(foo);
}