cs-lab03/histogram.h

9 строки
245 B
C++

#pragma once
#include <vector>
std::vector<long long unsigned int>
make_histogram(const std::vector<double>& numbers, size_t bin_count);
void
show_histogram_text(std::vector<double> bins, const std::vector<double>& numbers, size_t bin_count);