1
2
53
168
256
242
#include #include #include typedef struct _Queue{ NODE * next; NODE * prev; int age; char name[255];} QUEUE;LIST list;void TestList(){ QUEUE *p; int i; lstLibInit(); lstInit(&list); for...