自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

蜕变中的Programmer

追求卓越,成功就会在不经意之间追上你。

  • 博客(192)
  • 资源 (1)
  • 收藏
  • 关注

原创 2021-10-25

原文地址MinIO创建桶的名字只支持小写1. 选择版本首先去Docker官方仓库查找自己需要的版本,我安装的是minio/minio:RELEASE.2021-10-13T00-23-17Zdocker pull minio/minio:RELEASE.2021-10-13T00-23-17Z2. 启动docker run -d --restart=always \ -p 9000:9000 \ -p 9090:9090 \ --name minio \ -v /data/

2021-10-25 13:20:37 701

原创 Ubuntu18.04基于Jenkis+Gitee+Docker部署SpringBoot应用

Ubuntu18.04基于Jenkis+Gitee+Docker部署SpringBoot应用Ubuntu18.04安装Jenkins由于太懒没设置图床,图片无法访问,可以移步至Jenkis安装1.添加jenkis的软件包存储库用于自动安装和升级。要使用此存储库,首先将密钥添加到您的系统wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add - 2. 添加一个 Jenkins apt

2021-10-06 20:16:19 289

原创 MySQL知识点整理

MySQL索引什么是索引索引是一种特殊的文件(InnoDB数据表上的索引是表空间的一个组成部分),它们包含着对数据表里所有记录的引用指针。索引是一种数据结构。数据库索引,是数据库管理系统中一个排序的数据结构,以协助快速查询、更新数据库表中数据。索引的实现通常使用B树及其变种B+树。更通俗的说,索引就相当于目录。为了方便查找书中的内容,通过对内容建立索引形成目录。索引是一个文件,它是要占据物理空间的。索引的目的索引的目的在于提高查询效率,可以类比字典,如果要查“mysql”这个单词,我们肯定需要定

2021-05-30 11:24:03 622

原创 2021-05-30

MySQL索引什么是索引索引是一种特殊的文件(InnoDB数据表上的索引是表空间的一个组成部分),它们包含着对数据表里所有记录的引用指针。索引是一种数据结构。数据库索引,是数据库管理系统中一个排序的数据结构,以协助快速查询、更新数据库表中数据。索引的实现通常使用B树及其变种B+树。更通俗的说,索引就相当于目录。为了方便查找书中的内容,通过对内容建立索引形成目录。索引是一个文件,它是要占据物理空间的。索引的目的索引的目的在于提高查询效率,可以类比字典,如果要查“mysql”这个单词,我们肯定需要定

2021-05-30 11:21:33 524

转载 区块链笔记之区块链的实现

北大肖臻老师课上笔记之区块链的实现

2019-09-27 11:36:49 235

转载 区块链学习笔记之区块链的协议

北大肖臻老师区块链课程之区块链的协议

2019-09-27 11:33:15 325

转载 区块链学习笔记之区块链的数据结构

北大肖臻老师区块链课程笔记之区块链的协议

2019-09-27 11:31:24 382

转载 区块链之密码学原理

北大肖臻老师区块链课上笔记区块链之密码学原理

2019-09-27 11:29:21 563

转载 PHP配置文件连接数据库

https://www.cnblogs.com/1906859953Lucas/p/9452496.html

2019-06-03 17:29:28 2416

转载 Sublime Text3 安装docblocker 自动生成注释方法

https://blog.csdn.net/qq_34594236/article/details/79996243

2019-06-03 14:25:48 1989

转载 Sublime Text 3 解决there are no packages avaliable for installation问题

https://www.cnblogs.com/jellify/p/9522477.html 转载,这方法可以用

2019-06-03 14:20:28 259

原创 PHP存储过程Error: Commands out of sync; you can't run this command now

PHP调用MySQL存储过程出现Error: Commands out of sync; you can’t run this command now需要在两次调用存储过程中间关闭连接,然后再重新建立一个数据库连接<?phpheader('Content-type:text/html; charset=utf-8');//1.传入页码$pageSize=5;//每页显示数据条目数...

2019-06-02 15:05:09 955

原创 Windows下sublime text3 配置python开发环境

1.官网下载sublime text(建议下百度软件那个,package control 已经装好)和python(安装Python可参考这个链接)。 2.为Python配置环境变量,主要是设置PATH和 PATHEXT。在PATH变量中加英文分号和你的Python安装路径,例如我的是 (Tools\Binn\;D:\软件\Python;)路径前面的分号一定不要忘记。然后设置PATHEXT,在

2017-07-21 15:42:27 5633

原创 图 操作练习

头文件#ifndef TU_H_INCLUDED#define TU_H_INCLUDED#define MAXV 10typedef char* InfoType;typedef struct{ int no;//顶点编号 InfoType info;//顶点其他信息}VertexType;typedef struct{ int edgs[MAXV][MAX

2017-05-11 10:14:22 386

原创 循环链表实现约瑟夫问题

#include<stdio.h>#include<stdlib.h>typedef struct node{ int num; struct node *next;} data;//自定义结构体另一个名字int main(){ int i,j,n; int s=1;//从第几个开始数 int m=30;//总人数 data *p,*r,*

2017-05-11 10:12:37 377

原创 顺序栈的操作实现

#include<stdio.h>#include<stdlib.h>#define MaxSize 100typedef int ElemType;typedef struct{ ElemType data[MaxSize]; int top;}SqStack;//初始化void InitStack(SqStack* &s){ s=(SqStack*)ma

2017-05-11 10:11:56 426

原创 顺序环形队列的操作实现

#include<stdio.h>#include<stdlib.h>#define MaxSize 100typedef int ElemType;typedef struct{ ElemType data[MaxSize]; int front,rear;}SqQueue;//初始化环形队列void InitQueue(SqQueue* &q){ q=(

2017-05-11 10:10:55 614

原创 顺序串的操作实现

/*整型数据最好不要用 引用传参*/#include<stdio.h>#include<stdlib.h>#define MaxSize 100typedef struct{ char data[MaxSize]; int length;} SqString;//初始化串void InitString(SqString* &s){ s=(SqStrin

2017-05-11 10:10:17 808

原创 顺序表实现学生管理系统

#include<stdio.h>#include<iostream>#include<stdlib.h>#include<string.h>#define Maxlen 100using namespace std;struct Data//定义顺序表的元素个体{ char number[20]; char name[20]; char sex[10];

2017-05-11 10:09:23 932

原创 链栈操作实现

#include<stdio.h>#include<stdlib.h>typedef int ElemType;typedef struct linknode{ ElemType data; struct linknode *next;}LiStack;/****************初始化链栈********************/void InitStack(L

2017-05-11 10:08:42 278

原创 链队操作实现

/*@李德坤 烟台大学计算机与控制工程学院我自己对链队的理解,链队的front只要不是出队操作始终指向第一个进入的元素,而rear随着元素入队由指向第一个进入的元素逐渐后移(指向下一个元素),当然front随着元素出队而逐渐后移(和rear移动方向一样)例如1 2 13 2 14 3 2 15 4 3 2 1rear和front移

2017-05-11 10:08:00 390

原创 链表实现学生管理系统(作业)

#include<stdio.h>#include<string.h>#include<stdlib.h>#define Maxlen 100struct Data//定义链表的元素个体{ char number[20]; char name[20]; char sex[10]; int age; char examtype[20];};type

2017-05-11 10:07:10 1469 2

原创 队列实现迷宫问题

课下练习#include<stdio.h>#include<stdlib.h>#include<time.h>#define Maxsize 50int mg[10][10];void shengcheng(){ for(int i=0; i<10; i++) { mg[i][0]=1; mg[i][9]=1; mg[0][

2017-05-11 10:06:06 3446 2

原创 修正KMP算法 顺序串操作

课下练习/*整型数据最好不要用 引用传参*/#include<stdio.h>#include<stdlib.h>#define MaxSize 100typedef struct{ char data[MaxSize]; int length;} SqString;//初始化串void InitString(SqString* &s){ s=(SqS

2017-05-11 10:05:12 336

原创 KMP 顺序串操作练习

2016年10月14日 课下练习/*整型数据最好不要用 引用传参*/#include<stdio.h>#include<stdlib.h>#define MaxSize 100typedef struct{ char data[MaxSize]; int length;} SqString;//初始化串void InitString(SqString* &s)

2017-05-11 10:03:25 219

原创 二叉排序树实现简单的通讯录

头文件#ifndef TOU_H_INCLUDED#define TOU_H_INCLUDED#include<stdio.h>#include<stdlib.h>#include<iostream>using namespace std;typedef struct{ char Name[20]; char PhoneNumber[20]; char Adre

2017-05-11 09:56:27 1627 1

原创 VS2015 连接数据库操作

1.Ctrl+W+L 快捷键打开服务器资源管理器,或者视图,服务器资源管器 2.右键数据连接,创建新连接后如图所示 3.服务器名是你要连接的服务器名,可以是你自己的服务器也可以是别人的服务器,点击下拉框按钮会出现在局域网中所有的服务器。身份验证当你连接你自己的服务器可以是Windows身份验证,如果连接局域网的服务器必须是SQL server 验证,需提供登录名和密码。连接到数据库就是你

2017-05-08 19:43:15 15455 1

原创 数据库总结2

USE StudentManagerSELECT * FROM tbl_student; SELECT * FROM tbl_class AS c; 【1】单条插入数据 INSERT INTO tbl_student ( stu_number, stu_name, stu_age, birthday, class_id ) V

2017-05-07 18:54:44 320

原创 数据库总结

【1】SQL语句 1.查询所有文件 select * from 表名 home+f5 执行 2.或者(or),且(and),非(not) 【2】SQL类型 1.Char,8000 固定长度的非Unicode字符数据,固定长度的字符串相对于可变长度的字符串来说效率要高一些, 在数据长度固定的情况下优先选用固定长度,省去了计算长度的过程提高效率。char(10)能存5个汉字或者10个字母,

2017-05-07 18:53:21 329

原创 C# 餐桌项目增加、修改、删除、查询(登录注册界面)

1.封装DeskInfo类using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 项目1{ public class DeskInfo { private int deskI

2017-05-07 18:45:13 1227

原创 C#操作数据库进行简单的增加修改操作

1.将项目下的App.config文件打开,修改里面的内容,存储连接字符串<?xml version="1.0" encoding="utf-8" ?><configuration> <connectionStrings> <add connectionString="Data Source=LENOVO-PC;Initial Catalog=MyDatabase;Integrated

2017-05-07 18:35:37 6835

原创 C#将数据库的元组导出生产txt文件,代码实现

数据库操作类没有封装using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Data.SqlClient;using System.IO;namespace 导出数据{ class Pr

2017-05-07 18:24:20 290

原创 C# 将txt文件的数据库元组导入数据库,代码实现

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Data.SqlClient;using System.IO;namespace 导入数据{ class Program

2017-05-07 18:22:41 324

原创 反序列化对象(控制台应用程序,二进制序列化)

需要将序列化后的对象生产的txt文件放到项目文件下即bin/Debug,之后要添加项目引用,上一篇文章中类Personusing System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Runtime.Serialization.Formatters.Binary;usin

2017-05-07 18:20:07 390

原创 C# 序列化对象(控制台应用程序)

文件1.txt在项目文件夹bin/Debug下,两个类写在一个命名空间下了using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Runtime.Serialization.Formatters.Binary;using System.Text;using S

2017-05-07 18:03:18 490

原创 利用下拉框选择省份、城市、地区

说明1.首先封装操作数据库的类SqlHelper,当然前提还得创建数据库连接using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Configuration;using System.Data.S

2017-05-07 17:25:09 13139

原创 C# 事件传值应用于窗口传值

Winform程序代码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;usin

2017-05-07 17:14:07 1033

原创 .Net总结

欢迎使用Markdown编辑器写博客本Markdown编辑器使用StackEdit修改而来,用它写博客,将会带来全新的体验哦:Markdown和扩展Markdown简洁的语法代码块高亮图片链接和图片上传LaTex数学公式UML序列图和流程图离线写博客导入导出Markdown文件丰富的快捷键快捷键加粗 Ctrl + B 斜体 Ctrl + I 引用 Ctrl

2017-03-31 19:18:06 596

原创 利用树制作的简易家谱

#ifndef PARENTSCHILDREN_H_INCLUDED#define PARENTSCHILDREN_H_INCLUDED#include#include#define Maxsize 100typedef struct ANode{ int adjchild;//存储孩子的伪指针 struct ANode *nextchild;//指向下一个孩子的指针

2016-11-21 20:26:10 6321 1

原创 多文件 建立顺序链库

#ifndef STR_H_INCLUDED#define STR_H_INCLUDED#define MaxSize 100typedef struct{ char data[MaxSize]; int length;} SqString;void InitString(SqString* &s);//初始化串void StrAssign(SqString* &s,

2016-10-19 18:56:35 345

毕业设计选题

毕业设计选题,

2018-09-20

空空如也

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

TA关注的人

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