單向鏈表的操作彙總

#include <stdio.h> #include <malloc.h> #include <stdlib.h> #include <time.h> typedef struct _Node {   int data;   struct _Node *next;  }node; /*創建一個鏈表*/  node *creatnode_head(int n) {    node *p,*q=NU
相關文章
相關標籤/搜索