Question
This is C++ Please sumbit all files of code with their names Split a list into evens and odds without creating or deleting nodes. Derive
This is C++ Please sumbit all files of code with their names
Split a list into evens and odds without creating or deleting nodes. Derive the class intLinkedList from the class unorderedLinkedList as follows: class intLinkedList: public unorderedLinkedList
{ public: void splitEvensOddsList(intLinkedList &evensList, intLinkedList &oddsList); // Function to rearrange the nodes of the linked list so // that evensList consists of even integers and oddsList // consists of odd integers. // Postcondition: evensList consists of even integers. // oddsList consists of odd integers. // The original list is empty. // }; Also write the definition of the function splitEvensOddsList. Note that this function does not create any new nodes, it only rearranges the nodes of the original list so that nodes with even integers are in evensList and nodes with odd integers are in oddsList. Write a program that uses class intLinkedList to create a linked list of integers and then uses the function splitEvensOddsList to split the list into two sublists. The header files linkedList.h and unorderedLinkedList.h are supplied.
Your test program should produce output similar to this:
Enter integers ending with -999 34 62 21 10 15 90 66 53 7 120 88 36 90 11 17 24 10 -999 list: 34 62 21 10 15 90 66 53 7 120 88 36 90 11 17 24 10 evensList: 34 62 10 90 66 120 88 36 90 24 10 oddsList: 21 15 53 7 11 17
Your test program should use iterators to print the lists rather than the class print functions.
Turn in your all three of your template files, your test program, and screen shots of your testing.
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