https://leetcode.com/tag/design/ ...
分类:
其他好文 时间:
2019-02-21 23:22:00
阅读次数:
272
一。简单工厂 定义:简单工厂模式中,可以根据参数的不同返回不同类的实例。简单工厂模式专门定义一个类来负责创建其他类的实例,被创建的实例通常都具有共同的父类。 比如你去专门卖鼠标的地方你可以买各种各样的鼠标 二。工厂模式 定义:工厂方法模式中,工厂父类负责定义创建产品对象的公共接口,而工厂子类则负责生 ...
分类:
Web程序 时间:
2019-02-21 23:21:35
阅读次数:
336
#include<stdio.h>#include<windows.h>#include<string.h>int main(void){ char name[32]; char password[32]; FILE*data; char name_tmp[32]; char password_tm ...
分类:
其他好文 时间:
2019-02-21 23:21:21
阅读次数:
327
1 #include 2 #include 3 #include // STL 使用相关的函数需要include进来 4 using namespace std; 5 struct Stu_info{ 6 char id[10]; 7 int de, cai, sum; 8 int flag; 9 ... ...
分类:
其他好文 时间:
2019-02-21 23:21:06
阅读次数:
292
/root /roles web.yml /web ansible的一个组 /files /handlers /tasks(必须有) installmariadb.yml installnginx.yml installuwsgi.yml installredis.yml main.yml /tem ...
分类:
其他好文 时间:
2019-02-21 23:20:45
阅读次数:
402
1 #include 2 #include 3 char strnumber[16][5] = {"ling", "yi", "er", "san", "si", "wu", "liu", "qi", "ba", "jiu", "Ge", "Shi", "Bai", "Qian", "Wan", & ...
分类:
其他好文 时间:
2019-02-21 23:20:11
阅读次数:
322
使用AJAX技术发送异步请求 什么是AJAX AJAX指一步Javascript和XML(Asynchronous JavaScript And XML),它是一些列技术的组合,简单来说AJAX基于XMLHttpRequest让我们在不重载页面的情况下和服务器进行数据交换。 加上JavaScript ...
分类:
Web程序 时间:
2019-02-21 23:20:00
阅读次数:
297
1 #include 2 int main(){ 3 int n, countCase = 1; 4 long long a, b, c, sum; 5 scanf("%d", &n); 6 while(n--){ 7 bool flag; 8 scanf("%lld%lld%lld", &a, &... ...
分类:
其他好文 时间:
2019-02-21 23:19:37
阅读次数:
262
bs4的常见用法
分类:
编程语言 时间:
2019-02-21 23:19:25
阅读次数:
474
1 #include 2 #include 3 char str[10][6] = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"}; 4 int main(){ 5 int i = 0,... ...
分类:
其他好文 时间:
2019-02-21 23:19:10
阅读次数:
247
大家都是如何度过周末时光的呢?好多人都认为一周的工作后要好好休息下,于是在家疯狂的补觉,刷剧,打游戏,自我觉得很是正常,工作几天了,休息下不是当然嘛。是的,休息下很正常,但是把周末的时光都用到这些东西上不是很浪费吗?以前的我到周末也是疯狂的放飞自我,结果周一上班时反而状态不佳,自我总结是放松过度。做 ...
分类:
系统相关 时间:
2019-02-21 23:18:54
阅读次数:
348
1034 Head of a Gang (30 分) One way that the police finds the head of a gang is to check people's phone calls. If there is a phone call between Aand B, ...
分类:
其他好文 时间:
2019-02-21 23:18:35
阅读次数:
277
1、感受: 1、Oracle和MySQL放在一起操作时,才发现,两者基本使用的类都是一样的,只是加载的驱动不同(“Class.forName(???);”)。一定是定了某种协议之类的... 2、具体 Class.forName(???); 的参数,到底填什么驱动名呢?一般都是 ???Driver之类 ...
分类:
数据库 时间:
2019-02-21 23:18:21
阅读次数:
312
前提:今日查看nginx日志时发现有报错,说是一些js,css文件找不到,于是想到去实际路径下查看文件是否确实不存在。结果出现下图中报错: 经过别人提醒查看文件的时间,于是看了一下登上服务器是9:52查找不到目录,但是9:53又查找到了,当时以为是系统不稳定或者有人修改了代码,因为近期有人扫面过服务 ...
分类:
其他好文 时间:
2019-02-21 23:18:09
阅读次数:
374
一些常用的移动端的meta属性设置 ... ...
分类:
Web程序 时间:
2019-02-21 23:17:55
阅读次数:
310
添加 firewall-cmd --zone=public --add-port=80/tcp --permanent (--permanent永久生效,没有此参数重启后失效) 重新载入 firewall-cmd --reload 重启一个服务: systemctl restart firewall ...
分类:
其他好文 时间:
2019-02-21 23:17:41
阅读次数:
280
分类问题的评价指标是准确率,那么回归算法的评价指标就是MSE,RMSE,MAE、R-Squared。下面一一介绍 1、MSE(Mean Squared Error)均方误差 这里的y是测试集上的。 用 真实值-预测值 然后平方之后求和平均。 猛着看一下这个公式是不是觉得眼熟,这不就是线性回归的损失函 ...
分类:
其他好文 时间:
2019-02-21 23:17:30
阅读次数:
1112