Given the following method, what does it do?

template
int LinkedBag::doSomething(const ItemType& anEntry) const
{
int x = 0;
int counter = 0;
Node* curPtr = headPtr;
while ((curPtr != nullptr) && (counter < itemCount))
{
if (anEntry == curPtr– >getItem())
{
x++;
}
counter ++;


curPtr = curPtr– >getNext();


}
return x;
z

get the frequency of a specified entry in a bag.

Computer Science & Information Technology

You might also like to view...

A ____________ can display an entire database table in a scroll able grid on an application’s form.

a. Binding Navigator control b. Data Set control c. Chart control d. Data Grid View control

Computer Science & Information Technology

What type of entity is used to represent repeating groups?

A) fundamental entity B) associative entity C) attributive entity D) iterative entity

Computer Science & Information Technology