線性表在鏈式存儲結構下的基本操作

  源代碼: #include<iostream> #include<cstring> #define OK 1 #define ERROR 0 #define OVERFLOW -1 using namespace std; typedef int Elemtype; typedef struct LNode { Elemtype date; struct LNode *next; } LNod
相關文章
相關標籤/搜索