单链表

/* *链表上的基本操做 */ #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
相关文章
相关标签/搜索