Data structure(with C)
mwycysl
仲恺农业工程学院-计算机科学与技术专业
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Data Structure(with C).Experiment01.02
============algo2-2.h=========#include#includetypedef struct LinkList{ char data; LinkList *next;}LinkList;void InitList(LinkList *&L){ L=(LinkList *)malloc(sizeof(LinkList)); L->next=NU原创 2013-11-04 20:13:14 · 643 阅读 · 0 评论 -
Data Structure(with C).Experiment01.01
============algo2-1.cpp============#include#include#define MaxSize 6typedef struct{ char data[MaxSize]; int length;}SqList;void InitList(SqList *&L){ L=(SqList *)malloc(sizeof(Sq原创 2013-11-04 15:30:55 · 651 阅读 · 0 评论
分享