杨辉三角的队列方式输出(部分代码) void yanghui(LiQueue *&q) { elemtype x,y; int j=2; x=0; for(j=2;jdata); i++; } enQueue(q,0); printf("\n"); } } void main() { LiQueue *q; q=(LiQueue *)malloc(sizeof(LiQueue)); InitQueue(q); yanghui(q); }