自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 栈的顺序实现

#include <iostream> #include <iomanip> #define MAXSIZE 100 #define ADDSIZE 10 using namespace std; typedef int ElemType; typedef struct Stack { ElemType* base; ElemType* top; int length; }Stack; //初始化栈 int InitStack(Stack& L) { L.bas

2020-11-23 18:06:50 74

原创 线性表的顺序实现

#include <iostream> using namespace std; #define newsize 100 #define addsize 10 //构造线性表 typedef int ElemType; typedef struct { ElemType* elem; int length; int nowsize; }SqList; //初始化一个线性表 int InitList(SqList &L) { L.elem = (ElemType*)malloc

2020-11-23 18:03:42 44

原创 线性表的链式实现

#include <stdlib.h> #include <iostream> using namespace std; typedef struct Code { int data; struct Code* next; }Code, * Linklist; //初始化一个线性表 int Build(Linklist* L) { Linklist p; p = (Linklist)malloc(sizeof(Code)); p->next = NULL; *

2020-11-23 18:01:44 126

原创 求两个集合进行交差并运算的结果

#include<stdio.h> #include<stdlib.h> #include<string.h> #include<iostream> using namespace std; typedef struct node { int data; struct node* next; }node, * List; //建表 void Build(List& L) { L = (List)malloc(sizeof(node)); int

2020-11-23 17:59:15 246

原创 队列的链式实现

用链式存储结构,实现教材定义的队列的基本操作。 菜单中包括以下功能: 1.初始化队列,2.销毁队列,3.清空队列,4. 队列判空,5.求队列长度,6.获取队头元素,7.插入一个 元素,8.删除一个元素,9输出所有元素。 要求:自定义的函数中不允许出现提示语和输出语句。 #include <iostream> using namespace std; typedef struct Code { struct Code* next; int data; }Code,* List; type

2020-11-23 17:32:34 80

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除