摘要: #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 师大无语 阅读(107) 评论(0) 推荐(0) 编辑
摘要: //将两个递增的有序链表合并为一个递增的有序链表。//要求结果链表仍使用原来两个链表的存储空间,不另外占用其他的存储空间。表中不允许有重复的数据。#include<iostream>#include<cstdlib>using namespace std;#define OK 1#define ER 阅读全文
posted @ 2023-01-09 16:35 师大无语 阅读(93) 评论(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 师大无语 阅读(58) 评论(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 师大无语 阅读(98) 评论(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 师大无语 阅读(173) 评论(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 师大无语 阅读(256) 评论(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 师大无语 阅读(575) 评论(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 师大无语 阅读(91) 评论(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 @ 2022-12-20 20:03 师大无语 阅读(43) 评论(0) 推荐(0) 编辑
摘要: //顺序表#include<iostream>#include<cstdlib>//C中stdlib.h动态分配内存using namespace std;#define OK 1#define ERROR 0#define OVERFLOW -2#define MAXSIZE 100typedef 阅读全文
posted @ 2022-12-19 19:35 师大无语 阅读(74) 评论(0) 推荐(0) 编辑