鏈表的操作

  #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> typedef struct Node //定義結點 { int data; struct Node* next; }Node,List; typedef struct Header //定義頭結點 { int length;
相關文章
相關標籤/搜索