Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ POINTER QUESTION In statistics, the mode of a set of values is the value that occurs most often or with the greatest frequency. Write

C++ POINTER QUESTION

In statistics, the mode of a set of values is the value that occurs most often or with the greatest frequency. Write a function that accepts as arguments the following: A) An array of integers B) An integer that indicates the number of elements in the array The function should determine the mode of the array. That is, it should determine which value in the array occurs most often. The mode is the value the function should return. If the array has no mode (none of the values occur more than once), the function should return -1. (Assume the array will always contain nonnegative values.) Demonstrate your pointer prowess by using pointer notation instead of array notation in this function.

You are required to add the following additional requirements in this problem:

a. Ask the user to enter the size of an array in main method. The program should validate the size of an array, if it is not in between 5 to 50 (inclusive), ask the user to re-enter until it is valid.

b. Call the function given in programming challenge Array Allocator(Page# 553), and create an array of the size provided by the user.

c. Populate the array with random integer numbers 0 to 9 using seed value as 6000 in main method and display the contents of the array.

d. Implement the mode function as given in the problem.

e. Display the mode of the array with its frequency (number of times the mode value occurred in the array).

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

Privacy In Statistical Databases International Conference Psd 2022 Paris France September 21 23 2022 Proceedings Lncs 13463

Authors: Josep Domingo-Ferrer ,Maryline Laurent

1st Edition

3031139445, 978-3031139444

More Books

Students also viewed these Databases questions