cs-lab03/histogram.h

10 строки
210 B
C++

#ifndef HISTOGRAM_H_INCLUDED
#define HISTOGRAM_H_INCLUDED
#endif // HISTOGRAM_H_INCLUDED
#include <vector>
std::vector<std::size_t>
make_histogram(const std::vector<double>& numbers, std::size_t bin_count);