數據結構單鏈表的各類操做C++實現

//該程序實現了線性表的鏈式存儲結構之單鏈表和各項操做 #include<iostream> #include<tchar.h> using namespace std; //****線性表和一些基礎的定義***** #define ElemType int /*表中數據元素類型*/ typedef struct Node{ ElemType data; Node* next;
相關文章
相關標籤/搜索