Родитель
598ed6dc81
Сommit
6ad8baad0f
@ -1,39 +1,41 @@
|
|||||||
#include "histogram.h"
|
#include "histogram.h"
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
void find_minmax(const vector<double>& numbers, double& min, double& max) {
|
void find_minmax(const vector<double>& numbers, double& min, double& max) {
|
||||||
if (numbers.empty()) {
|
if (numbers.empty())
|
||||||
|
{
|
||||||
min = 0;
|
min = 0;
|
||||||
max = 0;
|
max = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
min = numbers[0];
|
|
||||||
max = numbers[0];
|
max = numbers[0];
|
||||||
for (float x : numbers) {
|
min = numbers[0];
|
||||||
|
for (double x : numbers) {
|
||||||
if (x < min) min = x;
|
if (x < min) min = x;
|
||||||
else if (x > max) max = x;
|
else if (x > max) max = x;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
vector<size_t> make_histogram(const vector<double>& numbers, size_t bin_count) {
|
vector<size_t> make_histogram(vector<double> numbers, size_t bin_count) {
|
||||||
double min, max;
|
double min, max;
|
||||||
find_minmax(numbers, min, max);
|
find_minmax(numbers, min, max);
|
||||||
|
double bin_size = (max - min) / bin_count;
|
||||||
|
vector<size_t> bins(bin_count);
|
||||||
|
|
||||||
float k = (max - min) / bin_count;
|
for (size_t i = 0; i < numbers.size(); i++) {
|
||||||
vector<size_t> bins(bin_count, 0);
|
bool found = false;
|
||||||
|
for (size_t j = 0; (j < bin_count - 1) && !found; j++) {
|
||||||
for (double number : numbers) {
|
auto lo = min + j * bin_size;
|
||||||
bool flag = false;
|
auto hi = min + (j + 1) * bin_size;
|
||||||
for (size_t j = 0; (j < bin_count && !flag); j++) {
|
if ((lo <= numbers[i]) && (numbers[i] < hi)) {
|
||||||
if (number >= (min + k * j) && number < (min + k * (j + 1))) {
|
|
||||||
bins[j]++;
|
bins[j]++;
|
||||||
flag = true;
|
found = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!flag) bins[bin_count - 1]++;
|
if (!found) {
|
||||||
|
bins[bin_count - 1]++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return bins;
|
return bins;
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
#pragma once
|
#ifndef HISTOGRAM_H_INCLUDED
|
||||||
|
#define HISTOGRAM_H_INCLUDED
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
vector<size_t> make_histogram(vector<double> numbers, size_t bin_count);
|
||||||
|
|
||||||
std::vector<size_t> make_histogram(const std::vector<double>& numbers, size_t bin_count);
|
#endif
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
#pragma once
|
#ifndef HISTOGRAM_INTERNAL_H_INCLUDED
|
||||||
#include <vector>
|
#define HISTOGRAM_INTERNAL_H_INCLUDED
|
||||||
|
|
||||||
void find_minmax(const std::vector<double>& numbers, double& min, double& max);
|
void find_minmax(const std::vector<double>& numbers, double& min, double& max);
|
||||||
|
|
||||||
|
#endif
|
||||||
|
@ -1,42 +1,35 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include "histogram.h"
|
#include "histogram.h"
|
||||||
|
#include "text.h"
|
||||||
#include "svg.h"
|
#include "svg.h"
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
// Ñòðóêòóðà äëÿ õðàíåíèÿ âõîäíûõ äàííûõ
|
|
||||||
struct Input {
|
struct Input {
|
||||||
vector<double> numbers;
|
vector<double> numbers;
|
||||||
size_t bin_count{};
|
size_t bin_count;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Ôóíêöèÿ ââîäà äàííûõ
|
|
||||||
Input input_data() {
|
Input input_data() {
|
||||||
Input in;
|
Input in;
|
||||||
int number_count;
|
size_t number_count;
|
||||||
|
cerr << "Enter number count: ";
|
||||||
cin >> number_count;
|
cin >> number_count;
|
||||||
while (number_count < 1) {
|
|
||||||
cin >> number_count;
|
|
||||||
}
|
|
||||||
|
|
||||||
cin >> in.bin_count;
|
|
||||||
while (in.bin_count < 1) {
|
|
||||||
cin >> in.bin_count;
|
|
||||||
}
|
|
||||||
|
|
||||||
in.numbers.resize(number_count);
|
in.numbers.resize(number_count);
|
||||||
for (int i = 0; i < number_count; i++) {
|
cerr << "Enter numbers: ";
|
||||||
|
for (size_t i = 0; i < number_count; i++) {
|
||||||
cin >> in.numbers[i];
|
cin >> in.numbers[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cerr << "Enter bin count: ";
|
||||||
|
cin >> in.bin_count;
|
||||||
return in;
|
return in;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ãëàâíàÿ ôóíêöèÿ
|
|
||||||
int main() {
|
int main() {
|
||||||
auto in = input_data(); // Ââîä äàííûõ
|
auto in = input_data();
|
||||||
auto bins = make_histogram(in.numbers, in.bin_count); // Ðàñ÷¸ò ãèñòîãðàììû
|
auto bins = make_histogram(in.numbers, in.bin_count);
|
||||||
show_histogram_svg(bins); // Âûâîä ãèñòîãðàììû â ôîðìàòå SVG
|
show_histogram_svg(bins);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
#pragma once
|
#ifndef SVG_H_INCLUDED
|
||||||
#include <vector>
|
#define SVG_H_INCLUDED
|
||||||
#include <string>
|
|
||||||
|
|
||||||
void svg_begin(double width, double height);
|
#include <vector>
|
||||||
void svg_end();
|
#include <cstddef> //
|
||||||
void svg_text(double left, double baseline, const std::string& text);
|
|
||||||
void svg_rect(double x, double y, double width, double height,
|
|
||||||
const std::string& stroke = "black",
|
|
||||||
const std::string& fill = "black");
|
|
||||||
void show_histogram_svg(const std::vector<size_t>& bins);
|
void show_histogram_svg(const std::vector<size_t>& bins);
|
||||||
|
|
||||||
|
#endif // SVG_H_INCLUDED
|
||||||
|
@ -1,33 +1,37 @@
|
|||||||
#include "text.h"
|
#include "text.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
void show_histogram_text(const vector<size_t>& bins) {
|
void show_histogram_text(vector<size_t> bins, size_t bin_count) {
|
||||||
const size_t SCREEN_WIDTH = 80;
|
const size_t SCREEN_WIDTH = 80;
|
||||||
const size_t MAX_ASTERISK = SCREEN_WIDTH - 3 - 1;
|
const size_t MAX_ASTERISK = SCREEN_WIDTH - 3 - 1;
|
||||||
|
double max_bin;
|
||||||
size_t max_count = 0;
|
size_t height;
|
||||||
for (size_t count : bins) {
|
max_bin = bins[0];
|
||||||
if (count > max_count) {
|
height = bins[0];
|
||||||
max_count = count;
|
for (size_t i = 0; i < bin_count; i++) {
|
||||||
|
if (bins[i] > max_bin) {
|
||||||
|
max_bin = bins[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (size_t bin : bins) {
|
bool flag = false;
|
||||||
if (bin < 100) cout << " ";
|
if (max_bin > 80) {
|
||||||
if (bin < 10) cout << " ";
|
flag = true;
|
||||||
cout << bin << "|";
|
}
|
||||||
|
for (size_t i = 0; i < bin_count; i++) {
|
||||||
size_t height = bin;
|
if (bins[i] < 100) cout << " ";
|
||||||
if (max_count > MAX_ASTERISK) {
|
if (bins[i] < 10) cout << " ";
|
||||||
if (max_count != bin)
|
cout << bins[i] << "|";
|
||||||
height = MAX_ASTERISK * (static_cast<float>(bin) / max_count);
|
if (flag == true) {
|
||||||
else
|
height = MAX_ASTERISK * (static_cast<double>(bins[i]) / max_bin);
|
||||||
height = MAX_ASTERISK;
|
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
for (size_t i = 0; i < height; i++) cout << "*";
|
height = bins[i];
|
||||||
cout << "\n";
|
}
|
||||||
|
for (size_t j = 0; j < height; j++) {
|
||||||
|
cout << "*";
|
||||||
|
}
|
||||||
|
cout << endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
#pragma once
|
#ifndef TEXT_H_INCLUDED
|
||||||
|
#define TEXT_H_INCLUDED
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
void show_histogram_text(vector<size_t> bins, size_t bin_count);
|
||||||
|
|
||||||
void show_histogram_text(const std::vector<size_t>& bins);
|
#endif
|
||||||
|
Загрузка…
Ссылка в новой задаче