顺序队列

//error函数用来显示程序错误 error.c #include "error.h" void myerror(char *str) { switch(errno) { case -1: printf("%s:输入的参数错误\n",str); break; case FULL_ERROR: printf("%s:满队状态\n",str); break; case EMPTY_ERROR: pr
相关文章
相关标签/搜索