數據結構與算法---列隊(單鏈表實現)

一、理論知識 待續 二、代碼實現 1.節點結構體、棧頂、尾指針結構體定義 typedef int ElemType; typedef struct node { ElemType data; struct node* pNext; }node,*pNode; typedef struct Queue//保存棧的頭。尾指針 { pNode front; pNode
相關文章
相關標籤/搜索