Родитель
8c602901e5
Сommit
ae349b5c93
@ -1,71 +1,55 @@
|
|||||||
#include <math.h>
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <conio.h>
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <cmath>
|
||||||
#include "histogram.h"
|
#include "histogram.h"
|
||||||
|
#include "histogram_internal.h"
|
||||||
|
#include <conio.h>
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
void find_minmax(vector<double> numbers, double& min, double& max)
|
||||||
bool find_minmax(vector<double> numbers, double& min, double& max)
|
|
||||||
{
|
{
|
||||||
if (numbers.empty())
|
min = numbers[0];
|
||||||
|
max = numbers[0];
|
||||||
|
for (double x : numbers)
|
||||||
{
|
{
|
||||||
return true;
|
if (x < min)
|
||||||
}
|
{
|
||||||
else
|
min = x;
|
||||||
{
|
|
||||||
min = numbers[0];
|
|
||||||
for (auto i = 0; i < numbers.size(); i++) {
|
|
||||||
if (numbers[i] < min) {
|
|
||||||
min = numbers[i];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
else if (x > max)
|
||||||
max = numbers[0];
|
{
|
||||||
for (auto i = 0; i < numbers.size(); i++) {
|
max = x;
|
||||||
if (numbers[i] > max) {
|
|
||||||
max = numbers[i];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
vector <size_t> make_histogramm(vector<double>numbers, size_t bin_count)
|
vector<size_t> make_histogramm (vector<double> numbers, size_t bin_count)
|
||||||
{
|
{
|
||||||
double min, max;
|
double min;
|
||||||
find_minmax(numbers, min, max);
|
double max;
|
||||||
double binSize = (max - min) / bin_count;
|
find_minmax (numbers, min, max);
|
||||||
|
double bin_size = (max - min) / bin_count;
|
||||||
vector<size_t> bins(bin_count);
|
vector<size_t> bins(bin_count);
|
||||||
|
|
||||||
for (size_t i = 0; i < numbers.size(); i++)
|
for (size_t i = 0; i < numbers.size(); i++)
|
||||||
{
|
{
|
||||||
bool found = false;
|
bool found = false;
|
||||||
for (size_t j = 0; (j <= bin_count - 1) && !found; j++)
|
for (size_t j = 0; (j < bin_count - 1) && !found; j++)
|
||||||
|
{
|
||||||
|
auto lo = min + j * bin_size;
|
||||||
|
auto hi = min + (j + 1) * bin_size;
|
||||||
|
if ((lo <= numbers[i]) && (numbers[i] < hi))
|
||||||
{
|
{
|
||||||
auto lo = min + j * binSize;
|
|
||||||
auto hi = min + (j + 1) * binSize;
|
|
||||||
if ((numbers[i] >= lo) && (numbers[i] < hi))
|
|
||||||
{
|
|
||||||
bins[j]++;
|
bins[j]++;
|
||||||
found = true;
|
found = true;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (!found)
|
|
||||||
bins[bin_count - 1]++;
|
|
||||||
}
|
}
|
||||||
int max_count = bins[0];
|
|
||||||
for (size_t i = 0; i < bin_count; i++)
|
if (!found)
|
||||||
{
|
|
||||||
if (bins[i] > max_count)
|
|
||||||
max_count = bins[i];
|
|
||||||
}
|
|
||||||
if (max_count > 76)
|
|
||||||
{
|
|
||||||
for (size_t i = 0; i < bin_count; i++)
|
|
||||||
{
|
{
|
||||||
int count = bins[i];
|
bins[bin_count - 1]++;
|
||||||
size_t height = 76 * (static_cast<double>(count) / max_count);
|
|
||||||
bins[i] = height;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return bins;
|
return bins;
|
||||||
}
|
}
|
||||||
|
Загрузка…
Ссылка в новой задаче