diff --git a/lab01/histogram.cpp b/lab01/histogram.cpp new file mode 100644 index 0000000..cf9f108 --- /dev/null +++ b/lab01/histogram.cpp @@ -0,0 +1,32 @@ +#include "histogram.h" +#include "histogram_internal.h" +#include +#include + +using namespace std; + +void find_minmax(const vector& numbers, double& min, double& max) { + if (numbers.empty()) { + return; + } + min = numbers[0]; + max = numbers[0]; + + for (double x : numbers) { + if (x < min) min = x; + if (x > max) max = x; + } +} + +vector make_histogram(const vector& numbers, size_t bin_count) { + double min, max; + find_minmax(numbers, min, max); + + vector bins(bin_count); + for (double x : numbers) { + size_t bin_index = (x - min) / (max - min) * bin_count; + if (bin_index == bin_count) bin_index--; + bins[bin_index]++; + } + return bins; +} diff --git a/lab01/histogram.h b/lab01/histogram.h new file mode 100644 index 0000000..8f0e098 --- /dev/null +++ b/lab01/histogram.h @@ -0,0 +1,9 @@ +#ifndef HISTOGRAM_H_INCLUDED +#define HISTOGRAM_H_INCLUDED + +#include +#include + +std::vector make_histogram(const std::vector& numbers, size_t bin_count); + +#endif diff --git a/lab01/histogram_internal.h b/lab01/histogram_internal.h new file mode 100644 index 0000000..177657b --- /dev/null +++ b/lab01/histogram_internal.h @@ -0,0 +1,8 @@ +#ifndef HISTOGRAM_INTERNAL_H_INCLUDED +#define HISTOGRAM_INTERNAL_H_INCLUDED + +#include + +void find_minmax(const std::vector& numbers, double& min, double& max); + +#endif diff --git a/lab01/lab01/bin/Debug/lab01.exe b/lab01/lab01/bin/Debug/lab01.exe new file mode 100644 index 0000000..587dddb Binary files /dev/null and b/lab01/lab01/bin/Debug/lab01.exe differ diff --git a/lab01/lab01/lab01.cbp b/lab01/lab01/lab01.cbp new file mode 100644 index 0000000..0807baa --- /dev/null +++ b/lab01/lab01/lab01.cbp @@ -0,0 +1,38 @@ + + + + + + diff --git a/lab01/lab01/obj/Debug/histogram.o b/lab01/lab01/obj/Debug/histogram.o new file mode 100644 index 0000000..313b26a Binary files /dev/null and b/lab01/lab01/obj/Debug/histogram.o differ diff --git a/lab01/lab01/obj/Debug/main.o b/lab01/lab01/obj/Debug/main.o new file mode 100644 index 0000000..9b16455 Binary files /dev/null and b/lab01/lab01/obj/Debug/main.o differ diff --git a/lab01/lab01/obj/Debug/svg.o b/lab01/lab01/obj/Debug/svg.o new file mode 100644 index 0000000..3de6d8e Binary files /dev/null and b/lab01/lab01/obj/Debug/svg.o differ diff --git a/lab01/lab01/obj/Debug/text.o b/lab01/lab01/obj/Debug/text.o new file mode 100644 index 0000000..b1673fd Binary files /dev/null and b/lab01/lab01/obj/Debug/text.o differ diff --git a/lab01/main.cpp b/lab01/main.cpp new file mode 100644 index 0000000..ec2eb96 --- /dev/null +++ b/lab01/main.cpp @@ -0,0 +1,36 @@ +#include +#include +#include "histogram.h" +#include "svg.h" + +using namespace std; + +struct Input +{ + vector numbers; + size_t bin_count{}; +}; + +Input input_data() +{ + size_t number_count; + cerr << "Number count: "; + cin >> number_count; + Input in; + in.numbers.resize(number_count); + + cerr << "Numbers: "; + for (size_t i = 0; i < number_count; i++) { + cin >> in.numbers[i]; + } + cerr << "Enter bin count:"; + cin >> in.bin_count; + return in; +} + +int main() { + auto in = input_data(); + auto bins = make_histogram(in.numbers, in.bin_count); + show_histogram_svg(bins); + return 0; +} diff --git a/lab01/svg.cpp b/lab01/svg.cpp new file mode 100644 index 0000000..39e5180 --- /dev/null +++ b/lab01/svg.cpp @@ -0,0 +1,45 @@ +#include "svg.h" +#include +#include +#include + +using namespace std; + +void svg_begin(double width, double height) { + cout << "\n"; + cout << "\n"; +} + +void svg_end() { + cout << "\n"; +} + +void svg_text(double left, double baseline, string text) { + cout << "" << text << "\n"; +} + +void svg_rect(double x, double y, double width, double height, string stroke = "black", string fill = "black") { + cout << "\n"; +} + +void show_histogram_svg(const vector& bins) { + const auto IMAGE_WIDTH = 400; + const auto IMAGE_HEIGHT = 300; + const auto TEXT_LEFT = 20; + const auto TEXT_BASELINE = 20; + const auto TEXT_WIDTH = 50; + const auto BIN_HEIGHT = 30; + const auto BLOCK_WIDTH = 10; + + svg_begin(IMAGE_WIDTH, IMAGE_HEIGHT); + + double top = 0; + for (size_t bin : bins) { + const double bin_width = BLOCK_WIDTH * bin; + svg_text(TEXT_LEFT, top + TEXT_BASELINE, to_string(bin)); + svg_rect(TEXT_WIDTH, top, bin_width, BIN_HEIGHT, "red", "#ffeeee"); + top += BIN_HEIGHT; + } + + svg_end(); +} diff --git a/lab01/svg.h b/lab01/svg.h new file mode 100644 index 0000000..b82c7e1 --- /dev/null +++ b/lab01/svg.h @@ -0,0 +1,9 @@ +#ifndef SVG_H_INCLUDED +#define SVG_H_INCLUDED + +#include +#include + +void show_histogram_svg(const std::vector& bins); + +#endif diff --git a/lab01/text.cpp b/lab01/text.cpp new file mode 100644 index 0000000..91a6cb8 --- /dev/null +++ b/lab01/text.cpp @@ -0,0 +1,22 @@ +#include "text.h" +#include +#include +#include + +using namespace std; + +void show_histogram_text(const vector& bins) { + const size_t SCREEN_WIDTH = 80; + size_t max_count = 0; + for (size_t count : bins) { + if (count > max_count) max_count = count; + } + + for (size_t bin : bins) { + size_t height = bin * SCREEN_WIDTH / max_count; + for (size_t i = 0; i < height; i++) { + cout << '*'; + } + cout << endl; + } +} diff --git a/lab01/text.h b/lab01/text.h new file mode 100644 index 0000000..ba4704d --- /dev/null +++ b/lab01/text.h @@ -0,0 +1,9 @@ +#ifndef TEXT_H_INCLUDED +#define TEXT_H_INCLUDED + +#include +#include + +void show_histogram_text(const std::vector& bins); + +#endif // TEXT_H_INCLUDED