摘要:
/* 有序表的合并 用链表实现 */ #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
阅读(74)
评论(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
阅读(135)
评论(0)
推荐(0)

浙公网安备 33010602011771号