常用数据结构定义

来源:互联网 发布:网络打鱼赌钱游戏 编辑:程序博客网 时间:2024/06/18 15:11
//顺序表数据结构//单链表数据结构typedef struct tagLIST_NODE_S {DATA_TYPE data;struct tagLIST_NODE_S *next;}LIST_NODE_S, *LinkList;//双向链表数据结构typedef struct tagDOUBLE_LIST_NODE_S {DATA_TYPE data;struct tagLIST_NODE_S *prior;struct tagLIST_NODE_S *next;}DOUBLE_LIST_NODE_S, *DoubleLinkList;

 

 


 

 

 

0 0