利用队列的基本操作实现杨辉三角的输出
#include<stdio.h>#include<malloc.h>#define Max 30typedef struct{ int *base; int front; int rear;}SqQ
利用队列的基本操作实现杨辉三角的输出