摘要:
#include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkList; //尾插法 LinkList L 阅读全文
posted @ 2021-07-11 19:32
upupup-999
阅读(90)
评论(0)
推荐(0)
摘要:
题目如下 解题思路 代码演示 #include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkList; / 阅读全文
posted @ 2021-07-11 17:51
upupup-999
阅读(47)
评论(0)
推荐(0)
浙公网安备 33010602011771号