Create a program with just one function that uses the


Create a program with just one function that uses the selection sort to sort a linked list IN C++

void sort_list(node*& head_ptr);

The selection sort should remove each node from the first linked list and put into a new second linked list. after the sort is complete, the first linked list should be empty your function should not need to call the new operator since it is just moving nodes from one list to another (not creating new node).

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: Create a program with just one function that uses the
Reference No:- TGS01031544

Expected delivery within 24 Hours