Форум программистов, компьютерный форум, киберфорум
С++ для начинающих
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.60/5: Рейтинг темы: голосов - 5, средняя оценка - 4.60
33 / 33 / 8
Регистрация: 17.09.2012
Сообщений: 193
1

Ошибка в for_each с лямбдой

13.02.2018, 16:54. Показов 1039. Ответов 3
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Добрый день! Было задание превратить серийный фор в for_each + лямбда в методе free(). Но что-то не выходит. Строка 51.

C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include <iostream>
#include <string>
#include <memory>
#include <algorithm>
 
class StrVec {
public:
    StrVec() : elements(nullptr), first_free(nullptr), cap(nullptr) {}
    StrVec(const StrVec&);
    StrVec& operator=(const StrVec&);
    ~StrVec();
 
    void push_back(const std::string&);
    size_t size() const { return first_free - elements; }
    size_t capacity() const { return cap - elements; }
    std::string *begin() const { return elements; }
    std::string *end() const { return first_free; }
 
private:
    std::allocator<std::string> alloc;
    void chk_n_alloc() { if(size() == capacity()) reallocate(); }
 
    std::pair<std::string*, std::string*>
    alloc_n_copy(const std::string*, const std::string*);
 
    void free();
    void reallocate();
 
    std::string *elements;
    std::string *first_free;
    std::string *cap;
};
 
void StrVec::push_back(const std::string &s) {
    chk_n_alloc();
    alloc.construct(first_free++, s);
}
 
std::pair<std::string*, std::string*>
StrVec::alloc_n_copy(const std::string *b, const std::string *e) {
    auto data = alloc.allocate(e - b);
    return { data, uninitialized_copy(b, e, data) };
}
 
void StrVec::free() {
    if(elements) {
//        for(auto p = first_free; p != elements; /* пусто */)
//            alloc.destroy(--p);
//        alloc.deallocate(elements, cap - elements);
 
        std::for_each(elements, first_free, [&](std::string *p){ alloc.destroy(p); });
        //alloc.deallocate(elements, cap - elements);
    }
}
 
StrVec::StrVec(const StrVec &s) {
    auto newdata = alloc_n_copy(s.begin(), s.end());
    elements = newdata.first;
    first_free = cap = newdata.second;
}
 
StrVec::~StrVec() { free(); }
 
StrVec& StrVec::operator=(const StrVec &rhs) {
    auto data = alloc_n_copy(rhs.begin(), rhs.end());
    free();
    elements = data.first;
    first_free = cap = data.second;
 
    return *this;
}
 
void StrVec::reallocate() {
    auto newcapacity = size() ? 2 * size() : 1;
    auto newdata = alloc.allocate(newcapacity);
    auto dest = newdata;
    auto elem = elements;
 
    for(size_t i = 0; i != size(); ++i)
        alloc.construct(dest++, std::move(*elem++));
    free();
 
    elements = newdata;
    first_free = dest;
    cap = elements + newcapacity;
}
 
/////////////////////////////////////////////////////////////////////////
 
int main()
{
 
 
    return EXIT_SUCCESS;
}
В 51 строке ошибка. Выдает:
C++
1
2
3
/usr/include/c++/5/bits/stl_algo.h:3767: error: no match for call to ‘(StrVec::free()::<lambda(std::__cxx11::string*)>) (std::__cxx11::basic_string<char>&)’
  __f(*__first);
     ^
0
Лучшие ответы (1)
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
13.02.2018, 16:54
Ответы с готовыми решениями:

Ошибка с лямбдой в арг., а с функцией компилируется
Объясните, если не затруднит. Есть функция с одним параметром string (set.find(val)), если в роли...

QTimer::singleShot: ошибка с лямбдой
Qt 5.7, QtCreator 4.1. Неясная ошибка появляется в таком коде: QString oldMsg =...

Ошибка при использовании for_each для вектора
Здравствуйте, форумчане,при компиляции возникает ошибка: c:\program files\microsoft visual...

std::sort с лямбдой
Здравствуйте! Есть такая структура: struct FNote // Falling note { enum class Type {...

3
Неэпический
18099 / 10685 / 2061
Регистрация: 27.09.2012
Сообщений: 26,897
Записей в блоге: 1
13.02.2018, 16:56 2
Лучший ответ Сообщение было отмечено FliXis как решение

Решение

std::string & параметр сделайте.
Ну и дальше в лямбде учесть это.
1
33 / 33 / 8
Регистрация: 17.09.2012
Сообщений: 193
13.02.2018, 16:58  [ТС] 3
Благодарю!
0
║XLR8║
1212 / 909 / 270
Регистрация: 25.07.2009
Сообщений: 4,361
Записей в блоге: 5
13.02.2018, 19:06 4
Цитата Сообщение от FliXis Посмотреть сообщение
std::for_each(elements, first_free,
порядок неверный, сначала first_free потом elements
0
13.02.2018, 19:06
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
13.02.2018, 19:06
Помогаю со студенческими работами здесь

Захват лямбдой указателя по ссылке
Добрый день! Помогите разобраться со следующей проблемой. Когда я захватываю лямбдой указатель по...

Remove_if с лямбдой переделать на без лямбды
_triangles.erase(std::remove_if(_triangles.begin(), _triangles.end(), (Triangle &amp;t){ return...

Функция выборки из Dictionary с лямбдой в качестве параметра
Помогите написать функцию выборки из Dictionary&lt;int, T&gt;, в которой в качестве параметра выступает...

For_each
С помощью for_each, найти колличество иксов в массиве |{xi|xi&lt;3}| (Visual C++ 2005)


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
4
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru