上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 31 下一页
  2021年7月10日
摘要: 题目如下 代码如下 #include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkList; //尾插法 阅读全文
posted @ 2021-07-10 17:44 upupup-999 阅读(152) 评论(0) 推荐(0)
  2021年7月9日
摘要: 题目如下 #include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkList; //尾插法 LinkL 阅读全文
posted @ 2021-07-09 18:05 upupup-999 阅读(76) 评论(0) 推荐(0)
摘要: 题目如下 #include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkList; //尾插法 LinkL 阅读全文
posted @ 2021-07-09 17:46 upupup-999 阅读(94) 评论(0) 推荐(0)
  2021年7月8日
摘要: #include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkList; //尾插法 LinkList L 阅读全文
posted @ 2021-07-08 10:15 upupup-999 阅读(144) 评论(0) 推荐(0)
摘要: #include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkList; //尾插法 LinkList L 阅读全文
posted @ 2021-07-08 09:30 upupup-999 阅读(150) 评论(0) 推荐(0)
  2021年7月7日
摘要: #include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkList; //尾插法 LinkList L 阅读全文
posted @ 2021-07-07 09:59 upupup-999 阅读(135) 评论(0) 推荐(0)
摘要: #include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkList; //尾插法 LinkList L 阅读全文
posted @ 2021-07-07 09:30 upupup-999 阅读(1207) 评论(0) 推荐(0)
  2021年7月6日
摘要: 现在对不同手机类型的 不同品牌实现操作编程(比如: 开机、关机、上网,打电话等), 如图: 传统方案解决手机操作问题 传统方案解决手机使用问题(类图): 传统方案解决手机操作问题分析 1) 扩展性问题(类爆炸),如果我们再增加手机的样式(旋转式),就需要增加各个品 牌手机的类,同样如果我们增加一个手 阅读全文
posted @ 2021-07-06 13:41 upupup-999 阅读(216) 评论(0) 推荐(0)
摘要: #include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkList; LinkList List_He 阅读全文
posted @ 2021-07-06 09:55 upupup-999 阅读(152) 评论(0) 推荐(0)
摘要: #include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkList; //尾插法 LinkList L 阅读全文
posted @ 2021-07-06 09:05 upupup-999 阅读(580) 评论(0) 推荐(0)
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 31 下一页