#include <stdio.h> #include <stdlib.h> //思路:由于两链表等长,先创建h=2*a的链表,然后等长拆分为h,h1;最后做加法。 typedef struct Node //结点 { int data; struct Node *next; }node; node* link(int m) //创建链表 { node *h,*p,*q; h = (node*)malloc(sizeof(node)); h->next = NULL; ...