code: структурирование программы

main
ZelenkinaKM 1 год назад
Родитель c763489475
Сommit 29b252961b

@ -3,36 +3,41 @@
using namespace std;
int main()
{
const size_t SCREEN_WIDTH = 80;
const size_t MAX_ASTERISK = SCREEN_WIDTH - 3-1;
//Êîëè÷åñòâî ÷èñåë
size_t number_count;
cerr<<"Enter number count: ";
cin>>number_count;
vector<double>numbers(number_count);
//×èñëà
cerr<<"Enter elements: ";
for (int i=0; i<number_count;i++){
cin>>numbers[i];
}
struct Input {
vector<double> numbers;
size_t bin_count{};
size_t number_count{};
size_t max_count{};
};
Input
input_data() {
Input in;
cerr << "Enter number count: ";
cin >> in.number_count;
vector<double> numbers(in.number_count);
in.numbers.resize(in.number_count);
for (size_t i = 0; i < in.number_count; i++) {
cin >> in.numbers[i];
}
//Êîëè÷åñòâî êîðçèí
size_t bin_count;
cerr<<"Enter bins count: ";
cin>>bin_count;
vector<size_t>bins(bin_count);
cerr << "Enter bin count: ";
cin >> in.bin_count;
size_t max_count;
in.max_count = 0;
return in;
}
//Îïðåäåëåíèå äèàïàçîíà ÷èñåë (max è min) â ìàññèâå
double min=numbers[0];
double max=numbers[0];
for (double x: numbers){
void find_minmax(const vector<double>& numbers, double& min, double& max) {
min = numbers[0];
max = numbers[0];
for (double x : numbers)
{
if (x < min){
min = x;
}
@ -40,11 +45,15 @@ int main()
max = x;
}
}
}
vector <size_t> make_histogram(const vector<double>& numbers, size_t & bin_count, size_t & number_count, size_t & max_count) {
double min, max;
find_minmax(numbers, min, max);
double bin_size = (max - min) / bin_count;
for (size_t i=0; i<number_count; i++){ //Îïîçíîâàíèå è óâåëè÷. ñ÷åò÷èêà ïîñëåäíåé êîðçèíû
vector<size_t> bins(bin_count);
max_count = bins[0];
for (size_t i = 0; i < number_count; i++){
bool found = false;
for (size_t j = 0; (j < bin_count - 1) && !found; j++){
auto lo = min + j * bin_size;
@ -53,45 +62,53 @@ int main()
bins[j]++;
found = true;
}
if (bins[j] > max_count){
max_count = bins[j];
}
}
if (!found){
bins[bin_count - 1]++;
}
if (bins[bin_count - 1] > max_count){
max_count = bins[bin_count - 1];
}
//Ìàêñèìàëüíîå êîë-âî çâåçäî÷åê
int max_simb=0;
for (int i=0; i<bin_count;i++){
int c=0;
c=bins[i];
if (max_simb<c){
max_simb=c;
}
return bins;
}
if (max_simb > MAX_ASTERISK){
void show_histogram_text(vector<size_t>& bins, size_t & max_count,size_t & bin_count){
const size_t SCREEN_WIDTH = 80;
const size_t MAX_ASTERISK = SCREEN_WIDTH - 3 - 1;
if (max_count > MAX_ASTERISK){
vector<size_t> hights(bin_count);
for (size_t i = 0; i < bin_count; i++){
size_t height = MAX_ASTERISK * (static_cast<double>(bins[i]) / max_simb);
size_t height = MAX_ASTERISK * (static_cast<double>(bins[i]) / max_count);
hights[i] = height;
}
for (size_t i = 0; i < bin_count; i++){
printf("%3d|", bins[i]);
for (int j=0; j<(hights[i]); j++){
for (size_t j = 0; j < hights[i]; j++){
cout<<"*";
}
cout << endl;
}
}
else{
for (int i=0; i<bin_count; i++){
for (size_t i = 0; i < bin_count; i++)
{
printf("%3d|", bins[i]);
for (int j=0; j<bins[i]; j++){
for (size_t j = 0; j < bins[i]; j++){
cout<<"*";
}
cout << endl;
}
}
return 0;
}
int main()
{
auto in = input_data();
auto bins = make_histogram(in.numbers, in.bin_count, in.number_count, in.max_count);
show_histogram_text(bins, in.max_count, in.bin_count);
}

Загрузка…
Отмена
Сохранить