c++ 数据结构 用循环队列实现杨辉三角形的打印

1.循环队列ios (1)功能:数组 # include<iostream> using namespace std; # include<assert.h> class SeqQueue{ private: int* elements; //存放队列元素的数组 int rear,front; //队尾指针和对头指针 int maxSize;
相关文章
相关标签/搜索