Question: .AnyList member function commonEnds o Parameter: An object of the class AnyList o The function returns true if the calling object and the parameter object
.AnyList member function commonEnds o Parameter: An object of the class AnyList o The function returns true if the calling object and the parameter object have the same first element AND the same last element o Example: Calling object: (1, 2, 3), Parameter object: (7, 3]) false Calling object: (1, 2, 3], Parameter object: (7, 3, 21) false Calling object: [1, 2, 3], Parameter object: [1, 3) true bool AnyList :.commonEnds(const AnyList& otherList) const if (count-e II otherList.counte) : else if (count == 1 && otherList.count == 1) return false; else if ( Node "callingobj - ptrToFirst; Node "paramobj - otherlist.ptrToFirst; while (callingobj->getPtrToNext) !-nullptr) callingobj callingobj->getPtrToNext) :while (paramobj->getPtrToNext)- nullptr) paramobj paramobj->getptrToNext(); return (callingobj->getData() - paramobj->getoata)) return false
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
