Question: DList ( ) { mHead = mTail = nullptr; mSize = 0 ; } ~DList ( ) { Clear ( ) ; } DList (
DList
mHead mTail nullptr;
mSize ;
~DList
Clear;
DListconst DList& copy
mHead nullptr;
mTail nullptr;
mSize ;
DList& operatorconst DList& assign
TODO: Implement this method
void AddHeadconst Type& data
TODO: Implement this method
void AddTailconst Type& data
TODO: Implement this method
void Clear
TODO: Implement this method
Iterator InsertIterator& iter, const Type& data
Implement this method
Iterator EraseIterator& iter
TODO: Implement this method
Iterator Begin const
TODO: Implement this method
Iterator End const
TODO: Implement this method
;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
