完成了顺序和链式的队列
This commit is contained in:
16
Chapter11/ds/line/squeue/list/queue.h
Normal file
16
Chapter11/ds/line/squeue/list/queue.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef QUEUE_H__
|
||||
#define QUEUE_H__
|
||||
|
||||
#include "llist.h"
|
||||
|
||||
typedef LLIST QUEUE;
|
||||
|
||||
QUEUE *queue_create(int);
|
||||
|
||||
int queue_en(QUEUE *, const void *);
|
||||
|
||||
int queue_de(QUEUE *, void *);
|
||||
|
||||
void queue_destroy(QUEUE *);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user