Algorithm-C/src/Queue at master · hongker/Algorithm-C · GitHub
Skip to content

Latest commit

 

History

History

Folders and files

Queue

队列是一种特殊的线性表,只允许在表的前端进行删除,而在表的后端进行插入,即 First In First Out

编译方式:
gcc SeqQueue.c SeqQueueExample.c -o SeqQueueExample.out

查看结果:
./SeqQueueExample.out