Answered step by step
Verified Expert Solution
Question
1 Approved Answer
solve please Part 1: Starting from the arrayListType.h (attached with this assignment) and without using any of the predefined member functions or modifying them, write
solve please
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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started