数据结构之链表的实现以及各类应用

#include <stdio.h> #include <malloc.h> #include <stdlib.h> //the max and the min. typedef struct LNode{ int data; struct LNode *next; }LNode; //初始化一个链表 LNode* initLinkList(LNode *
相关文章
相关标签/搜索