摘要: /* 有序表的合并 用链表实现 */ #include <stdio.h> #include <stdlib.h> #include <malloc.h> typedef int ElemType; typedef struct Lnode{ ElemType data; struct Lnode 阅读全文
posted @ 2021-10-15 22:59 CharHao 阅读(62) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<stdlib.h> #include<malloc.h> typedef int ElemType; typedef struct Lnode { ElemType data; struct Lnode* next; }LNode, * Link 阅读全文
posted @ 2021-10-15 22:45 CharHao 阅读(117) 评论(0) 推荐(0) 编辑