链表的操作

  #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> typedef struct Node //定义结点 { int data; struct Node* next; }Node,List; typedef struct Header //定义头结点 { int length;
相关文章
相关标签/搜索