码迷,mamicode.com
首页 >  
搜索关键字:线性结构之双链表实现    ( 1个结果
线性结构之双链表实现
#include<stdio.h>#include<malloc.h>#include<stdlib.h>typedefstructnode{ intdata; structnode*prior; structnode*next;}NODE,*PNODE;PNODEcreateList(PNODE);voidtravelList(PNODE);voidinsertList(PNODE,int,int);intlengthList(PNODE);voiddelList(PNO..
分类:其他好文   时间:2016-10-22 18:30:12    阅读次数:145
1条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!