коммит всего
Этот коммит содержится в:
2
LR3/.gitignore
поставляемый
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="<{~None~}>" />
|
||||
</Unit>
|
||||
<Unit filename="main.cpp" />
|
||||
<Unit filename="text.cpp" />
|
||||
<Unit filename="text.h">
|
||||
<Option target="<{~None~}>" />
|
||||
</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;
|
||||
|
||||
Ссылка в новой задаче
Block a user