Question: Write a recursive function to split the elements of a sorted (in increasing order), singly-linked lists of integers into two sorted, singly-linked lists, where the
Write a recursive function to split the elements of a sorted (in increasing order), singly-linked lists of integers into two sorted, singly-linked lists, where the first list contains all items with an odd value, and the second list contains all items with an even value. The original list should not be preserved (see below). Your function must be recursive - you will get NO credit for an iterative solution. If you use helper functions- which you may-then they all must also be recursive: using loops anywhere in your functions will result in no credit. You should use the following Node type: struct Node int value Node *next; h: Here is the function you should implement: void split (Node*& in, Node*& odds, Node*& evens)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
