單鏈表

/* *鏈表上的基本操做 */ #include <iostream> using namespace std; #define MAX_LIST_SIZE 100 typedef int DataType; typedef struct node { DataType data; struct node* next; }ListNode; typedef ListNode* LinkL
相關文章
相關標籤/搜索