线性表的链式存储结构
1.定义结构体#include <iostream>#include <cstring>#include <algorithm>using namespace std;typedef struct Node{ int data; // 链表的每个结点的值 struct Node *next; // 定义一个结构体指针,用来指向下一个结点}Node;typedef struct Node *LinkList; //