In C++
Implement the array constructor of the LinkedList class. Yourheader will be
LinkedList::LinkedList(int myArray[], int size)
The function will insert the values from myArray into the listso that the values end up in the same order as they were in thearray. (Hint: loop through the array from right to left and callinsertFirst.)
Expert Answer
An answer will be send to you shortly. . . . .