摘要: 数据结构-有序单链表的集合运算 #include "stdafx.h" #include "malloc.h" typedef struct Node { char data; Node *next; }List; // 创建单链表 void CreateList(List *&L, char a[], int n) { List 阅读全文
posted @ 2019-01-13 22:59 tuqunfu 阅读(558) 评论(0) 推荐(0)