單鏈表以及雙向鏈表的操做

#include<stdio.h> #include<stdlib.h> #define MAX 30 typedef struct s       //單向鏈表的存儲結構 {     int data;     struct s *next; }S,*LinkList; typedef struct DuList   //雙向鏈表的存儲結構 {     int data;     struct
相關文章
相關標籤/搜索