2017年1月18日
摘要: struct PolyNode{ int coef;//系数 int expon;//指数 struct PolyNode *link;//指向下一个结点的指针 }; typedef struct PolyNode *Polynomial; Polynomial P1,P2; Polynomial 阅读全文
posted @ 2017-01-18 19:25 chy89224 阅读(2147) 评论(0) 推荐(0) 编辑
摘要: struct Node{ ElementType Data; struct Node *Next; }; struct QNode{//链队列结构 struct Node *rear; //指向队尾结点 struct Node *front;//指向队头结点 }; typedef struct QN 阅读全文
posted @ 2017-01-18 16:25 chy89224 阅读(197) 评论(0) 推荐(0) 编辑
摘要: #define MaxSize <储存数据元素的》最大个数> struct QNode{ ElementType Data[MaxSize]; int rear; int front; }; typedef struct QNode *Queue; void AddQ(Queue PtrQ,Elem 阅读全文
posted @ 2017-01-18 15:45 chy89224 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-01-18 01:58 chy89224 阅读(119) 评论(0) 推荐(0) 编辑