摘要: 串的定义:串(或字符串)是由零个或多个字符组成的有限序列,一般记为 s='a1a2a3a4……an' 阅读全文
posted @ 2020-02-13 18:10 ✎﹏ℳ๓爲誰 阅读(435) 评论(0) 推荐(0)
摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 typedef struct LNode //结点类型 5 { 6 int index; //指数 7 int coe; //系数 8 struct LNode *next; 9 }LNode,*Link; 1 阅读全文
posted @ 2020-02-11 21:45 ✎﹏ℳ๓爲誰 阅读(240) 评论(0) 推荐(0)