原博文
此程序模拟了银行排队系统,用链表实现队列排队List.h 1 #ifndef LIST_H 2 #define LIST_H 3 #include 4 #include 5 6 #define OK 0 7 #define ERROR -1 8 //define the structure node 9 typedef struct queue10 {11 int value;12 struct queue *next;13 }Queue;14 15 // front point to head node16 typedef struct li......