7-2 Merging Linked Lists

原来L1 和 L2 不一定是 L1 》

#include 
#include 
#include 
using namespace std;
int const maxn = 100010;
struct node{
   
	int first, data, next;
}Node[maxn];
int main(){
   
	int h1, h2, n, num, a, d, b;
	vector<node> v1, v2

你可能感兴趣的:(7-2 Merging Linked Lists)