實驗之鏈棧

實驗目的: 熟練應用棧的鏈式存儲結構——鏈棧,並瞭解其運作原理,編寫代碼實行。 實驗要求: 應用鏈棧完成學生信息的入棧,出棧,編寫代碼並完成操作。 實驗代碼: 頭文件: #include <iostream> template<class T> class Node { public:  T data;  Node  *next;   }; template<class T> class Link
相關文章
相關標籤/搜索