I am new to the world of c++ and am trying to learn on my own i was wondering if i have a linked list
struct node
{
int item;
node* next;
};
what would be the best wat to sort this list (in assending order)
and could you please show me what that sort would look like
thanks



LinkBack URL
About LinkBacks



