基於循環鏈表的隊列的基本操做

注意不設頭指針,注意細節!!!node #include<bits/stdc++.h> using namespace std; typedef struct node { int a; struct node *next; }node,*link; typedef struct { link rear; }Link; void Push(Link &Q,int n) {
相關文章
相關標籤/搜索