自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 惠普笔记本调节亮度失效

在尝试过安装显卡驱动,快捷键驱动后,若还是不能调节,可以试试以下方法:请去设备管理器 -》监控器-》换另外一个试试;以上仅个人方法,仅供参考!...

2020-03-24 08:32:50 3844

原创 idea maven:jetty插件项目使用JRebel实现热部署

安装JRebel;通过idea插件安装;需要破解自行百度;view-》tool window -》找到JRebel;面板中找到JRebel,打开勾选自己的项目;上方工具栏中找到点击左上角+,点击maven项目;找到自己的项目路径;在下方输入运行命令;jetty:run;保存;5.修改pom.xml文件;在插件配置中加入这一行:<scanIntervalSecon...

2020-03-18 18:37:19 378

原创 Docker部署学习

安装依赖yum install -y yum-utils device-mapper-persistent-data lvm2设置仓库yum-config-manager –add-repo https://download.docker.com/linux/centos/docker-ce.repo安装dockeryum install docker-ce docke...

2020-03-08 21:48:03 117

原创 字符串替换

#include<iostream>#include<string>#include "cstdio"using namespace std;int main(){ string a, b, c; cin >> a; cin >> b; cin >> c; int n = a.find_first_of(b); ...

2019-03-19 12:34:51 87

原创 括号匹配问题

#include "iostream"#include "vector"#include "algorithm"#include "string"#include "stack"using namespace std;vector<string>::iterator it;stack<char> t;bool paren(const std::stri...

2019-03-19 12:24:16 126

原创 字符串翻转

#include "iostream"#include "stdio.h"#include "algorithm"#include "stdlib.h"#include "vector"using namespace std;int main(){ int n; cin>>n; vector<vector<string > &g...

2019-03-19 12:22:46 90

原创 排序问题

#include "iostream"#include "algorithm"#include "stdio.h"#include "vector"using namespace std;int main(){ int n; cin>>n; vector<vector<int > > result(n); vect...

2019-03-19 12:20:50 148

原创 c++表达式计算

c++a=str.find_first_of(op,1); //表示从str字符串的1位置开始查找op字符串;若找到:a==string::npos;否则:a!=string::npos;计算表达式#include "iostream"#include "cstdio"#include "string"#include "stack"#include "vector"#inc...

2019-03-19 12:19:17 931

原创 初学vector和iterator

在代码中说明/*排序算法*/#include "iostream"#include "algorithm" #include "vector"#include "cstdio"using namespace std;int main(){ int n; cin&gt;&gt;n; vector&lt;int&gt;::iterator pd

2019-03-07 23:15:31 928

转载 判断汉字个数

/*汉字统计*/#include &lt;stdio.h&gt;int main(void){ int n; scanf("%d", &amp;n); getchar(); while(n--) { int cnt = 0; char ch; for(;;) { if((ch = ...

2019-03-06 10:36:10 461

空空如也

空空如也

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

TA关注的人

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