hey guys. i have a linked list set out like this
struct node
{
string bookTitle;
string *authors;
int nAuthors;
node *next;
};
node *start_ptr;
and i need to sort the linked list based on bookTitle alphabetically. how would i go about doing this?