C 基础数据结构---队列 ADT

最近闲来无事,不想浪费青春,就动手翻看以前的笔记和书本,将作一些记录node 下面是经过C语言实现的队列:code #include <assert.h> #include <stdio.h> #include <stdlib.h> typedef struct Node { int data; struct Node *next; }*Node; typedef struct Queue {
相关文章
相关标签/搜索