单链表排序
#include〈iostream〉using namespace std;struct Cnode{ int data; Cnode *next;};Cnode *creat(Cnode *head
单链表排序