ineed help plz? 
--------------------------------------------------------------------------------
how do i solve this programme by c++?
struct node
{
int id;
char *name;
node *next;
};
class list
{
private:
node *head;
}
how can i write a fun called sort this function sorts students records in the list in an ascending order.
note: we load student record from a text file and store them into linked list.
just i want the fun which sort?
plz help me?
	
		
			
		
		
	
				
			--------------------------------------------------------------------------------
how do i solve this programme by c++?
struct node
{
int id;
char *name;
node *next;
};
class list
{
private:
node *head;
}
how can i write a fun called sort this function sorts students records in the list in an ascending order.
note: we load student record from a text file and store them into linked list.
just i want the fun which sort?
plz help me?