NP
Size: a a a
NP
v
NP
v
struct Iterator {
virtual T* Next() = 0;
};
NP
NP
v
struct Iterator {
virtual T* Next() = 0;
};
v
NP
v
NP
v
NP
АК
NP
AM
DT
Linked_List(const Linked_List &other){
Head->Next = Tail;
Tail->Prev = Head;
for(const T& elem:other){
this->push_back(elem);
}
}