1. 首页
  2. 大数据
  3. flink
  4. 张乃孝版的数据结构课本课件讲解代码LinkQueue.h.doc

张乃孝版的数据结构课本课件讲解代码LinkQueue.h.doc

上传者: 2020-12-12 10:42:36上传 DOC文件 22KB 热度 11次
/*LinkQueue.h*/ /*链接队列类型和界面函数声明 */ struct Node; typedef struct Node *PNode; struct Node /* 结点结构 */ { DataType info; PNode link; }; struct LinkQueue /* 链接队列类型定义 */ { PNode f; /* 头指针 */ PNode r; /* 尾指针
下载地址
用户评论