master
Грудинин Егор 1 год назад
Родитель 745806c95a
Сommit 9742ec3ced

@ -2,7 +2,7 @@
using namespace std;
static void
void
find_minmax(const vector<double>& numbers, double& min, double& max)
{
min = numbers[0];

@ -0,0 +1,9 @@
#ifndef HISTOGRAM_INTERNAL_H_INCLUDED
#define HISTOGRAM_INTERNAL_H_INCLUDED
#include <vector>
void
find_minmax(const std::vector<double>& numbers, double& min, double& max)
#endif // HISTOGRAM_INTERNAL_H_INCLUDED

@ -1,6 +1,8 @@
#ifndef TEXT_H_INCLUDED
#define TEXT_H_INCLUDED
#include <vector>
void
show_histogram_text(const std::vector<size_t>& bins, size_t& bin_count);

Загрузка…
Отмена
Сохранить