Data_structures_and_algorithms_FMI icon indicating copy to clipboard operation
Data_structures_and_algorithms_FMI copied to clipboard

Repository with examples for the " Data structures and algorithms" course given by me @ Faculty of Mathematics and Informatics, Sofia University

Results 5 Data_structures_and_algorithms_FMI issues
Sort by recently updated
recently updated
newest added

във функцията remove_after мисля, че трябва да има проверка if (it.currentElementPtr->next == nullptr), защото ако имаме списък с два елемента и преместим итератора в края на списъка, той ще се...

changed iterators to use pointers instead of references so that we are now able to assign iterators to one another after their initialization. Also added a check in operator ==...