合併兩個排好序的鏈表

typedef struct Nodetag{TYPE val; struct Nodetag * next;} Node; typedef Node* pNode; Node* combine(Node* p1, Node* p2) { Node *head, *p; if(p1 == NULL) return p2; if(p2 == NULL) return p1;
相關文章
相關標籤/搜索