#include #include"queue.h" int isEmptyTail(node *tail) { if (tail == NULL) return 1; else return 0; } int isEmptyHead(node *head) { if (head == NULL) return 1; else return 0; }