Roman Ovsyannikov 1 неделю назад
Родитель 77f57ea9f3
Сommit 2ee4d858c6

2
LR3/.gitignore поставляемый

@ -1,2 +1,4 @@
/bin
/obj
/LR3.depend
/LR3.layout

@ -32,7 +32,16 @@
<Add option="-Wall" />
<Add option="-fexceptions" />
</Compiler>
<Unit filename=".gitignore" />
<Unit filename="histogram.cpp" />
<Unit filename="histogram.h">
<Option target="&lt;{~None~}&gt;" />
</Unit>
<Unit filename="main.cpp" />
<Unit filename="text.cpp" />
<Unit filename="text.h">
<Option target="&lt;{~None~}&gt;" />
</Unit>
<Extensions>
<lib_finder disable_auto="1" />
</Extensions>

@ -1,4 +1,5 @@
#include "histogram.h"
#include <vector>
using namespace std;

@ -1,9 +1,10 @@
#ifndef HISTOGRAM_H_INCLUDED
#define HISTOGRAM_H_INCLUDED
#include <vector>
std::vector<size_t>
make_histogram(std::vector<double> numbers, size_t bin_count);
make_histogram(std::vector<double> numbers, int bin_count);

@ -1,3 +1,4 @@
#include <vector>
#include "text.h"
using namespace std;

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