建立兩個非遞減鏈表,合併成一個遞增鏈表

#include <iostream> #include<bits/stdc++.h> using namespace std; typedef struct node{ int data; struct node *next; }no; void youxu(no *head,no *p){ no *q,*tail; q=head; tail=q->next; while(tail!=NULL&
相關文章
相關標籤/搜索