栈和队列的应用:球钟问题(栈和队列的应用)

#stdio.h#conio.h#malloc.h# N 30/*27=N=127*/# NULL 0typedef struct Qnode/*定义队列接点类型*/{ data;struct Qnode *next;}Qnode,*Queueptr;Queueptr p,q;typedef struct{Queueptr front;Queueptr rear... [阅读全文]
1 共1条 分1页