數據結構——鏈棧

1、鏈棧 一、top:指向棧頂結點的指針,空棧時top = NULL。git 2、用C語言實現鏈棧 一、構造存儲結構 typedef int datatype; typedef struct linkstack { datatype data; struct linkstack *next; }link_stack, *link_pstack; 二、初始化 初始化讓top = N
相關文章
相關標籤/搜索