单向链表的操作汇总

#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
相关文章
相关标签/搜索