#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