自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 链表实现对学生信息的相关操作

#include #include #define MAX 10 #define NE 4 using namespace std; class Student { //学生类 public: string name; //姓名 int num; //学号 float score[3]; //成绩 }; class SqList { public: int length; /...

2018-11-09 15:11:01 273

原创 链队列和循环队列的基本操作

#include #include<stdio.h> #include<malloc.h> #define NE 10 using namespace std; //链队列 class Queue { public: int data; Queue *next; }; class QueuePtr { public: Queue *front; Queue *rear; }...

2018-11-09 15:06:22 503

原创 栈的相关操作

#include #include<stdio.h> #include<stdlib.h > #include<math.h> #include using namespace std; #define DATA_Input 10 #define New_Data 4 struct Stack { char *base; char *top; int stack...

2018-11-09 15:04:08 110

原创 线性表删除串元素

#include #include<bits/stdc++.h>//万能头文件 using namespace std; #define MAX 10 #define NE 1 class List { private: int *elem; int length; int maxlong; public: void SetList();//构造线性表 void InputList()...

2018-11-09 15:02:20 124

原创 数据结构链表操作

#include using namespace std; class LNode { public: int data; int count; LNode *next; }; void CreatList_h(LNode* &L,int n);//用头插法建立链表 void CreateList_t(LNode* &L,int n);//用尾插法建立链表 void InsertL...

2018-11-08 21:28:47 121

原创 数据结构顺序表

这//#include //#includeclass SqList { private: int length; int listlength; int *elem; public: void InitList(int longs );//初始化线性表 void InputList(int longs);//输入数据 void InsertList(int i,int e);//向顺序表第i个位...

2018-11-08 21:26:39 210

空空如也

空空如也

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

TA关注的人

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