Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
47 строки
1.0 KiB
C++
47 строки
1.0 KiB
C++
#include <iostream>
|
|
#include <vector>
|
|
#include "histogram.h"
|
|
#include "text.h"
|
|
#include "svg.h"
|
|
using namespace std;
|
|
|
|
struct Input{
|
|
vector<double> numbers;
|
|
size_t bin_count{};
|
|
};
|
|
Input
|
|
input_data(istream& in, bool prompt=false)
|
|
{
|
|
Input inn;
|
|
size_t number_count;
|
|
if (prompt){
|
|
cerr << "Enter count, numbers and bin_count\n";
|
|
}
|
|
in >> number_count;
|
|
inn.numbers.resize(number_count);
|
|
|
|
vector<double> numbers(number_count);
|
|
for (size_t i=0; i< number_count; i++) {
|
|
in >> inn.numbers[i];
|
|
}
|
|
in >> inn.bin_count;
|
|
return inn;
|
|
}
|
|
|
|
#include <curl/curl.h>
|
|
int main(int argc, char* argv[])
|
|
{
|
|
if (argc > 1) {
|
|
cout << "argc = " << argc << endl;
|
|
for (int i = 0; i < argc; ++i) {
|
|
cout << "argv[" << i << "] = " << argv[i] << endl;
|
|
}
|
|
return 0;
|
|
}
|
|
curl_global_init(CURL_GLOBAL_ALL);
|
|
size_t max_count;
|
|
auto inn = input_data(cin, true);
|
|
auto bins = make_histogram(inn.numbers, inn.bin_count);
|
|
show_histogram_svg(bins);
|
|
}
|