自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 创建一个顺序栈,完成七个函数功能

#include <stdio.h> #include <stdlib.h> #include using namespace std; #define ERROR 0 #define OK 1 #define OVERFLOW -2 typedef int SElemType; typedef int Status; #define STACK_INIT_SIZE 100//存储空间初始分配量 typedef struct//定义一个栈 { SElemType* base; SE

2021-11-05 00:28:55 145

原创 用C#连接SQL制作简单的学生系统查询

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Data.SqlClient; namespace 学生系

2021-11-05 00:17:42 180

原创 2021-11-05

C++创建链队 #include <stdio.h> #include <stdlib.h> #include #define MAXSIZE 100 using namespace std; #define ERROR 0 #define OK 1 #define OVERFLOW -2 typedef int QElemType; typedef int Status; //#define STACK_INIT_SIZE 100//存储空间初始分配量 //00 定义 typede

2021-11-05 00:06:55 86

空空如也

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

TA关注的人

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