Question: C++ programming Both images below are under the same number (1a and 1b) Please provide code for whole program and function only to both 1a
C++ programming
Both images below are under the same number (1a and 1b)

Please provide code for whole program and function only to both 1a and 1b.
Define a function void insertAtend(HourlyWorker workers[], int idIndexes[], int numWorkers, const HourlyWorker \& w); hhat 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. For example, if numWorkers is initially 2, workers [0] . id is 102 and workers [1] . id is 101. Then idIndexes will be {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 Define a function void insertAtend(HourlyWorker workers[], int idIndexes[], int numWorkers, const HourlyWorker \& w); hhat 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. For example, if numWorkers is initially 2, workers [0] . id is 102 and workers [1] . id is 101. Then idIndexes will be {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
