#include <stdio.h> #include<malloc.h> struct Node //创建链表类型 { int data; struct Node* pNext; }; struct ...