code: индивидуальное задание
Этот коммит содержится в:
58
main.cpp
58
main.cpp
@@ -1,18 +1,17 @@
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
#include <math.h>
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <curl/curl.h>
|
||||
#include "histogram.h"
|
||||
#include "histogram_internal.h"
|
||||
#include "text.h"
|
||||
#include "svg.h"
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
|
||||
using namespace std;
|
||||
|
||||
struct Input {
|
||||
size_t n;
|
||||
vector<double>A;
|
||||
size_t bin{};
|
||||
};
|
||||
@@ -25,23 +24,28 @@ size_t write_data(void* items, size_t item_size, size_t item_count, void* ctx)
|
||||
return data_size;
|
||||
}
|
||||
|
||||
Input input_data(istream& tin, bool promt)
|
||||
Input input_data(istream& tin, bool prompt)
|
||||
{
|
||||
size_t n;
|
||||
if (promt)
|
||||
cerr<<"Marks: ";
|
||||
tin>>n;
|
||||
|
||||
Input in;
|
||||
in.A.resize(n);
|
||||
for (size_t i=0; i<n; i++)
|
||||
size_t n;
|
||||
|
||||
if (prompt)
|
||||
{
|
||||
cerr<<"A["<<i<<"]=";
|
||||
cin>>in.A[i];
|
||||
cout<<"Marks: ";
|
||||
}
|
||||
tin>>in.n;
|
||||
in.A.resize(in.n);
|
||||
|
||||
for (size_t i=0; i<in.n; i++)
|
||||
{
|
||||
cout<<"A["<<i<<"]=";
|
||||
tin>>in.A[i];
|
||||
}
|
||||
|
||||
if (promt)
|
||||
cerr<<"Rows: ";
|
||||
if (prompt)
|
||||
{
|
||||
cout<<"Rows: ";
|
||||
}
|
||||
tin>>in.bin;
|
||||
return in;
|
||||
}
|
||||
@@ -52,31 +56,43 @@ Input download(const string& address)
|
||||
CURL* curl = curl_easy_init();
|
||||
if(curl)
|
||||
{
|
||||
|
||||
CURLcode res;
|
||||
double connect;
|
||||
curl_easy_setopt(curl, CURLOPT_URL, address.c_str());
|
||||
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_data);
|
||||
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &buffer);
|
||||
res = curl_easy_perform(curl);
|
||||
if (res != 0)
|
||||
{
|
||||
cout << curl_easy_strerror(res);
|
||||
cerr << curl_easy_strerror(res);
|
||||
exit(1);
|
||||
}
|
||||
else
|
||||
cerr<<"No errors (code "<<res<<")"<<'\n';
|
||||
if(CURLE_OK == res)
|
||||
{
|
||||
res = curl_easy_getinfo(curl, CURLINFO_CONNECT_TIME, &connect);
|
||||
if(CURLE_OK == res)
|
||||
{
|
||||
cerr<<"Connecting time: "<<connect<<"sec";
|
||||
}
|
||||
}
|
||||
curl_easy_cleanup(curl);
|
||||
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_data);
|
||||
}
|
||||
return input_data(buffer, false);
|
||||
}
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
Input in;
|
||||
CURLcode res;
|
||||
if (argc > 1)
|
||||
in = download(argv[1]);
|
||||
else
|
||||
in = input_data(cin, true);
|
||||
size_t n;
|
||||
auto B = make_histogram(in.A, in.bin);
|
||||
show_histogram_svg(B);
|
||||
|
||||
system("pause");
|
||||
return 0;
|
||||
}
|
||||
|
||||
Ссылка в новой задаче
Block a user