摘要: 今天用c语言写了有序链表的合并。#include <stdio.h> #include <stdlib.h> typedef int ElementType; typedef struct Node *PtrToNode; struct Node { ElementType Data; PtrToN 阅读全文
posted @ 2021-09-21 21:20 Lindseyyip 阅读(37) 评论(0) 推荐(0) 编辑