From 31162629a08bc2d3c9a8a4ca5ee58f35c01cea1e Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Sun, 3 May 2020 18:34:18 +0200 Subject: fix: pop w value --- I_anno/Programmazione_2/data_structures/list.cc | 30 ++++++++++++++++--------- 1 file changed, 19 insertions(+), 11 deletions(-) (limited to 'I_anno/Programmazione_2/data_structures/list.cc') diff --git a/I_anno/Programmazione_2/data_structures/list.cc b/I_anno/Programmazione_2/data_structures/list.cc index 02ae2fd..2aa97de 100644 --- a/I_anno/Programmazione_2/data_structures/list.cc +++ b/I_anno/Programmazione_2/data_structures/list.cc @@ -72,6 +72,23 @@ public: return this; } + list* pop(int val) { + if(_head == nullptr) + return this; + else if(_head->value == val) + return pop_front(); + + node* iter = _head; + while(iter && iter->next && iter->next->value != val) + iter = iter->next; + + node* temp = iter->next; + iter->next = iter->next->next; + delete temp; + + return this; + } + list* pop_front() { if(_head == nullptr) return this; @@ -138,17 +155,8 @@ int main() { l->print(); cout << endl; l->push_front(1); l->print(); cout << endl; - - // output - // 1 2 - // 1 2 5 - // 1 2 5 10 15 - // 1 2 5 6 10 15 - // 1 2 4 5 6 10 15 - // 1 2 3 4 5 6 10 15 - // 1 2 3 4 5 6 10 - // 2 3 4 5 6 10 - // 1 2 3 4 5 6 10 + l->pop(1); + l->print(); cout << endl; return 0; } -- cgit v1.2.3-18-g5258