摘要: #include<iostream>#include<cstdlib>using namespace std;#define MAXSIZE 100#define OK 1#define ERROR 0#define OVERFLOW -2typedef int Status;typedef int 阅读全文
posted @ 2023-01-09 19:06 师大无语 阅读(95) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<cstdlib>using namespace std;#define MAXSIZE 100#define OK 1#define ERROR 0typedef int Status;typedef int Elemtype;typedef s 阅读全文
posted @ 2023-01-09 17:38 师大无语 阅读(104) 评论(0) 推荐(0) 编辑
摘要: //将两个递增的有序链表合并为一个递增的有序链表。//要求结果链表仍使用原来两个链表的存储空间,不另外占用其他的存储空间。表中不允许有重复的数据。#include<iostream>#include<cstdlib>using namespace std;#define OK 1#define ER 阅读全文
posted @ 2023-01-09 16:35 师大无语 阅读(91) 评论(0) 推荐(0) 编辑