From fde71ba2450ecd589ec96a74bb6d7c7449ba8867 Mon Sep 17 00:00:00 2001 From: TarasovEE Date: Tue, 5 Aug 2025 21:29:53 +0300 Subject: [PATCH] =?UTF-8?q?header:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8?= =?UTF-8?q?=D0=B8=20=D1=81=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8=D1=8F=20?= =?UTF-8?q?=D0=B3=D0=B8=D1=81=D1=82=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=BC?= =?UTF-8?q?=D1=8B=20=D0=B2=20SVG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- histogram.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/histogram.h b/histogram.h index f36e088..a09ad92 100644 --- a/histogram.h +++ b/histogram.h @@ -1,10 +1,16 @@ #ifndef HISTOGRAM_H_INCLUDED #define HISTOGRAM_H_INCLUDED +#include #include +// Создание корзин для оценок. + std::vector make_histogram(const std::vector& numbers, size_t bin_count); +// Создание гистограммы на основании корзин в формате SVG. + +void show_histogram_svg(const std::vector& bins); #endif // HISTOGRAM_H_INCLUDED