Question: Write an Append() function that takes two linked lists, listA and listB, appends listB onto the end of listA. listA: 13->5->42->null listB: 7->4->9->45->null after call

Write an Append() function that takes two linked lists, listA and listB, appends listB onto the end of listA. listA: 13->5->42->null listB: 7->4->9->45->null after call to append lista becomes listA: 13->5->42->7->4->9->45->null
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
