Сравнить коммиты
3 Коммитов
ef3566b21e
...
41401e5a9f
| Автор | SHA1 | Дата | |
|---|---|---|---|
|
|
41401e5a9f | ||
|
|
12b523ef2f | ||
|
|
e22859b6eb |
48
histogram.cpp
Обычный файл
48
histogram.cpp
Обычный файл
@@ -0,0 +1,48 @@
|
|||||||
|
#include "histogram.h"
|
||||||
|
#include <iostream>
|
||||||
|
#include <vector>
|
||||||
|
using namespace std;
|
||||||
|
void find_minmax( const vector<double>& numbers, double& minN, double& maxN) {
|
||||||
|
minN = numbers[0];
|
||||||
|
maxN = numbers[0];
|
||||||
|
|
||||||
|
for (double x: numbers){
|
||||||
|
if (minN > x){
|
||||||
|
minN = x;
|
||||||
|
}
|
||||||
|
if (maxN < x){
|
||||||
|
maxN = x;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
vector<size_t> make_histogram(const vector<double>& numbers, size_t bin_count){
|
||||||
|
double minN, maxN;
|
||||||
|
find_minmax( numbers, minN, maxN);
|
||||||
|
|
||||||
|
vector <size_t> bins(bin_count);
|
||||||
|
double diff = (maxN - minN) / bin_count;
|
||||||
|
size_t max_count = 0;
|
||||||
|
for (size_t i = 0; i <numbers.size() ; i++){
|
||||||
|
bool found = false;
|
||||||
|
for (size_t j = 0;(j < bin_count - 1) && !found; j++){
|
||||||
|
auto lo = minN + j * diff;
|
||||||
|
auto hi = minN + (j + 1) * diff;
|
||||||
|
if ((lo <= numbers[i]) && (hi > numbers[i])){
|
||||||
|
bins[j]++;
|
||||||
|
if (bins[j] > max_count){
|
||||||
|
max_count = bins[j];
|
||||||
|
}
|
||||||
|
found = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(!found){
|
||||||
|
bins[bin_count - 1]++;
|
||||||
|
if (bins[bin_count - 1] > max_count){
|
||||||
|
max_count = bins[bin_count - 1];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return bins;
|
||||||
|
}
|
||||||
6
histogram.h
Обычный файл
6
histogram.h
Обычный файл
@@ -0,0 +1,6 @@
|
|||||||
|
#ifndef HISTOGRAM_H_INCLUDED
|
||||||
|
#define HISTOGRAM_H_INCLUDED
|
||||||
|
#include <vector>
|
||||||
|
std::vector <size_t> make_histogram(const std::vector <double> &numbers, size_t bin_count);
|
||||||
|
|
||||||
|
#endif // HISTOGRAM_H_INCLUDED
|
||||||
84
main.cpp
84
main.cpp
@@ -1,5 +1,7 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include "histogram.h"
|
||||||
|
#include "text.h"
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
struct Input {
|
struct Input {
|
||||||
@@ -23,88 +25,6 @@ for (size_t i = 0; i < number_count; i++) {
|
|||||||
return in;
|
return in;
|
||||||
}
|
}
|
||||||
|
|
||||||
void find_minmax( const vector<double>& numbers, double& minN, double& maxN) {
|
|
||||||
minN = numbers[0];
|
|
||||||
maxN = numbers[0];
|
|
||||||
|
|
||||||
for (double x: numbers){
|
|
||||||
if (minN > x){
|
|
||||||
minN = x;
|
|
||||||
}
|
|
||||||
if (maxN < x){
|
|
||||||
maxN = x;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
auto make_histogram(vector<double> numbers, size_t bin_count){
|
|
||||||
double minN, maxN;
|
|
||||||
find_minmax( numbers, minN, maxN);
|
|
||||||
|
|
||||||
vector <size_t> bins(bin_count);
|
|
||||||
double diff = (maxN - minN) / bin_count;
|
|
||||||
size_t max_count = 0;
|
|
||||||
for (size_t i = 0; i <numbers.size() ; i++){
|
|
||||||
bool found = false;
|
|
||||||
for (size_t j = 0;(j < bin_count - 1) && !found; j++){
|
|
||||||
auto lo = minN + j * diff;
|
|
||||||
auto hi = minN + (j + 1) * diff;
|
|
||||||
if ((lo <= numbers[i]) && (hi > numbers[i])){
|
|
||||||
bins[j]++;
|
|
||||||
if (bins[j] > max_count){
|
|
||||||
max_count = bins[j];
|
|
||||||
}
|
|
||||||
found = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(!found){
|
|
||||||
bins[bin_count - 1]++;
|
|
||||||
if (bins[bin_count - 1] > max_count){
|
|
||||||
max_count = bins[bin_count - 1];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return bins;
|
|
||||||
}
|
|
||||||
|
|
||||||
void show_histogram_text(vector <size_t> bins,size_t bin_count, size_t max_count){
|
|
||||||
const size_t SCREEN_WIDTH = 80;
|
|
||||||
const size_t MAX_ASTERISK = SCREEN_WIDTH - 6 - 1;
|
|
||||||
|
|
||||||
bool scaling = false;
|
|
||||||
|
|
||||||
if (max_count > MAX_ASTERISK){
|
|
||||||
scaling = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (size_t i = 0; i < bin_count; i++){
|
|
||||||
cout << " ";
|
|
||||||
if (bins[i] < 100){
|
|
||||||
cout << ' ';
|
|
||||||
}
|
|
||||||
if (bins[i] < 10){
|
|
||||||
cout << ' ';
|
|
||||||
}
|
|
||||||
cout << bins[i] << '|';
|
|
||||||
|
|
||||||
size_t number_of_stars = bins[i];
|
|
||||||
|
|
||||||
if (scaling){
|
|
||||||
if (bins[i] == max_count){
|
|
||||||
number_of_stars = MAX_ASTERISK * 1.0;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
number_of_stars = MAX_ASTERISK * (static_cast<double>(bins[i]) / max_count);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for (size_t j = 0; j < number_of_stars; j++){
|
|
||||||
cout << '*';
|
|
||||||
}
|
|
||||||
cout << endl;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
int main(){
|
int main(){
|
||||||
size_t max_count;
|
size_t max_count;
|
||||||
auto in = input_data();
|
auto in = input_data();
|
||||||
|
|||||||
41
text.cpp
Обычный файл
41
text.cpp
Обычный файл
@@ -0,0 +1,41 @@
|
|||||||
|
#include "text.h"
|
||||||
|
#include <iostream>
|
||||||
|
#include <vector>
|
||||||
|
using namespace std;
|
||||||
|
void show_histogram_text(const vector <size_t>& bins,size_t bin_count, size_t max_count){
|
||||||
|
const size_t SCREEN_WIDTH = 80;
|
||||||
|
const size_t MAX_ASTERISK = SCREEN_WIDTH - 6 - 1;
|
||||||
|
|
||||||
|
bool scaling = false;
|
||||||
|
|
||||||
|
if (max_count > MAX_ASTERISK){
|
||||||
|
scaling = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (size_t i = 0; i < bin_count; i++){
|
||||||
|
cout << " ";
|
||||||
|
if (bins[i] < 100){
|
||||||
|
cout << ' ';
|
||||||
|
}
|
||||||
|
if (bins[i] < 10){
|
||||||
|
cout << ' ';
|
||||||
|
}
|
||||||
|
cout << bins[i] << '|';
|
||||||
|
|
||||||
|
size_t number_of_stars = bins[i];
|
||||||
|
|
||||||
|
if (scaling){
|
||||||
|
if (bins[i] == max_count){
|
||||||
|
number_of_stars = MAX_ASTERISK * 1.0;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
number_of_stars = MAX_ASTERISK * (static_cast<double>(bins[i]) / max_count);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (size_t j = 0; j < number_of_stars; j++){
|
||||||
|
cout << '*';
|
||||||
|
}
|
||||||
|
cout << endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
6
text.h
Обычный файл
6
text.h
Обычный файл
@@ -0,0 +1,6 @@
|
|||||||
|
#ifndef TEXT_H_INCLUDED
|
||||||
|
#define TEXT_H_INCLUDED
|
||||||
|
#include <vector>
|
||||||
|
void show_histogram_text(const std::vector <size_t>& bins,size_t bin_count, size_t max_count);
|
||||||
|
|
||||||
|
#endif // TEXT_H_INCLUDED
|
||||||
Ссылка в новой задаче
Block a user