Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

using c++ Modify the arrayListType by adding a member function that normalizes the elements in the list an return the maximum value in the list.

using c++
image text in transcribed
Modify the arrayListType by adding a member function that normalizes the elements in the
list an return the maximum value in the list. Normalization is to divide each element in the list
by the maximum number in the list.
For example, if list L contains the elements,
2134350
and you call the member function as in
L.normalize();
The list content will then be changed to
0.4 0.2 0.6 0.8 0.6 10
And the function returns 5.
using c++
Part 1: Starting from the arrayListType. h (attached with this assignment) and without using any of the predefined member functions or modifying them, write the required code to do the following. Make sure to perform all the required error checkings. 1. Modify the arraylistType by adding a member function that normalizes the elements in the list an return the maximum value in the list. Normalization is to divide each element in the list by the maximum number in the list. For example, if list L contains the elements. 2134350 and you call the member function as in L.normalize(): The list content will then be changed to 0.40.20.60.80.610 And the function returns 5 . The list should not be empty

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

Data Access Patterns Database Interactions In Object Oriented Applications

Authors: Clifton Nock

1st Edition

0321555627, 978-0321555625

More Books

Students also viewed these Databases questions

Question

When would you use one approach, and when would you use another?

Answered: 1 week ago