Question: C++ code Problem has two parts, 1a and 1b: Please provide code for function itself and full program. Define a function void insertAtEnd(HourlyWorker workers[], int
C++ code
Problem has two parts, 1a and 1b: 
Please provide code for function itself and full program.
Define a function void insertAtEnd(HourlyWorker workers[], int idindexes[], int numWorkers, const HourlyWorker \& w); that sets workers [numWorkers-1] to w and updates idindexes. The exact structure of HourlyWorker doesn't matter other than the fact that it contains an id field of type int. The array idIndexes gives the order of elements by id. So idIndexes [0] is the index of worker with smallest id, idindexes [1] is the index of worker with second smallest id and so on. For example, if numWorkers is initially 2, workers [0] . id is 102 and workers [1] . id is 101. Then id Indexes will be {1,0}. Now suppose we want to insert a new worker w with id 100. After calling insertAtEnd (workers, idindexes, 3, w), workers [2] will be w and idindexes will be {2,1,0}. You don't need, nor should you use a nested loop. You should only need a single loop. HINT: At some point in your code you may want to evaluate the condition workers[idlndexes[i-1]].id > target.id
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
