1. 首页
  2. 编程语言
  3. C++ 
  4. 数据结构链表

数据结构链表

上传者: 2019-07-27 04:46:04上传 CPP文件 3.28KB 热度 32次
数据结构各种链表的实现和建立。#include#includetypedefchardatatype;typedefstructNODE*pointer;structNODE{datatypedata;pointernext;};typedefpointerlklist;lklistinitlist(){//初始化pointerhead;head=newNODE;head->next=NULL;returnhead;}
下载地址
用户评论