Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a templated function countInList that will take in an array of any type, the length of the array and a value of the same

Write a templated function countInList that will take in an array of any type, the length of the array and a value of the same type as the array. It should count the number of times the value appears in the array and return that number

code:

#include

using namespace std;

//Do not modify anything on or above the line below this //YOUR_CODE_BELOW

//YOUR_CODE

//YOUR_CODE_ABOVE //Do not modify anything on or below the line above this

int main() { int nums[] = {4, 1, 2, 5, 2, 6, 2}; char letters[] = {'A', 'B', 'A', 'B'}; string words[] = {"apple", "banana", "apple"};

cout << countInList(nums, 7, 2) << endl; cout << countInList(letters, 4, 'A') << endl; cout << countInList(words, 3, "banana") << endl;

return 0; }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Main Memory Database Systems

Authors: Frans Faerber, Alfons Kemper, Per-Åke Alfons

1st Edition

1680833243, 978-1680833249

More Books

Students also viewed these Databases questions

Question

What are Decision Trees?

Answered: 1 week ago

Question

What is meant by the Term Glass Ceiling?

Answered: 1 week ago