list_鏈表的經常使用操做

#include <stdio.h> #include <malloc.h> #include <stdlib.h> typedef struct Node { int data; //數據域 struct Node * pNext; //指針域 }NODE,*PNODE; //NODE等價於struct Node, PNODE等價於stru
相關文章
相關標籤/搜索