#ifndef HISTOGRAM_H_INCLUDED #define HISTOGRAM_H_INCLUDED #include std::vector make_histogram(const std::vector& numbers, size_t bin_count); bool find_minmax(std::vector numbers, double& minN, double& maxN); #endif // HISTOGRAM_H_INCLUDED