建立两个非递减链表,合并成一个递增链表

#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&
相关文章
相关标签/搜索