1. 首页
  2. 编程语言
  3. C
  4. 单链表(C语言版)

单链表(C语言版)

上传者: 2019-09-12 00:39:01上传 C文件 683B 热度 28次
对单链表操作#include#includestructLNode{intdata;structLNode*next;};structLNode*create(intn){inti;structLNode*head,*p1,*p2;head=(structLNode*)malloc(sizeof(structLNode));head->data=0;head->next=NULL;。。。。。
用户评论