摘要: #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-11 17:02 师大无语 阅读(93) 评论(0) 推荐(0)
摘要: #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 师大无语 阅读(123) 评论(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 师大无语 阅读(166) 评论(0) 推荐(0)
摘要: //将两个递增的有序链表合并为一个递增的有序链表。//要求结果链表仍使用原来两个链表的存储空间,不另外占用其他的存储空间。表中不允许有重复的数据。#include<iostream>#include<cstdlib>using namespace std;#define OK 1#define ER 阅读全文
posted @ 2023-01-09 16:35 师大无语 阅读(134) 评论(0) 推荐(0)
摘要: #include<iostream>#include<cstdlib>using namespace std;#define OK 1#define ERROR 0#define MAXSIZE 100typedef int Elemtype;typedef int Status;typedef s 阅读全文
posted @ 2023-01-08 19:04 师大无语 阅读(76) 评论(0) 推荐(0)
摘要: #include<iostream>#include<cstdlib>using namespace std;#define MAXSIZE 100#define OK 1#define ERROR 0typedef int Elemtype;typedef int Status;typedef s 阅读全文
posted @ 2023-01-07 15:48 师大无语 阅读(134) 评论(0) 推荐(0)
摘要: #include<iostream>#include<cstdlib>using namespace std;#define MAXSIZE 100#define OK 1#define ERROR 0typedef int Elemtype;typedef int Status;typedef s 阅读全文
posted @ 2023-01-05 18:33 师大无语 阅读(230) 评论(0) 推荐(0)
摘要: #include<iostream>#include<cstdlib>//C++动态分配存储空间using namespace std;#define OK 1#define ERROR 0#define MAXSIZE 100typedef int Elemtype;typedef int Sta 阅读全文
posted @ 2023-01-05 17:00 师大无语 阅读(322) 评论(0) 推荐(0)
摘要: //客户端登录界面(Form1.cs窗口体系) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using Sy 阅读全文
posted @ 2023-01-05 11:21 师大无语 阅读(807) 评论(0) 推荐(0)
摘要: #include<iostream>#include<cstdlib>//C++动态分配存储空间using namespace std;#define OK 1#define ERROR 0#define MAXSIZE 100typedef int Elemtype;typedef int Sta 阅读全文
posted @ 2023-01-03 20:51 师大无语 阅读(127) 评论(0) 推荐(0)