KMP算法原理 http://jakeboxer.com/blog/2009/12/13/the-knuth-morris-pratt-algorithm-in-my-own-words/ ...
分类:
其他好文 时间:
2020-06-30 17:31:21
阅读次数:
67
1、解压压缩包 我的放到:K:\Mysql5.7\mysql-5.7.15-winx64 2、配置环境变量 新建MYSQL_HOME: K:\Mysql5.7\mysql-5.7.15-winx64 path 添加 : %MYSQL_HOME%\bin 3、新建并修改配置文件my.ini [mysq ...
分类:
数据库 时间:
2020-06-30 10:32:08
阅读次数:
81
mariaDB的设置方法: #vim /etc/my.conf [mysqld] character_set_server=utf8mb4 collation-server=utf8mb4_unicode_ci init_connect='SET NAMES utf8mb4' skip-charac ...
分类:
数据库 时间:
2020-06-29 18:46:48
阅读次数:
104
题目描述 LL今天心情特别好,因为他去买了一副扑克牌,发现里面居然有2个大王,2个小王(一副牌原本是54张^_^)... 他随机从中抽出了5张牌,想测测自己的手气,看看能不能抽到顺子,如果抽到的话,他决定去买体育彩票, 嘿嘿!!“红心A,黑桃3,小王,大王,方片5”,“Oh My God!”不是顺子 ...
分类:
其他好文 时间:
2020-06-29 16:55:49
阅读次数:
65
[root@pxc2 ~]# cat /root/master_ip_failover #!/usr/bin/env perl use strict;use warnings FATAL => 'all'; use Getopt::Long; my ( $command, $ssh_user, $o ...
分类:
其他好文 时间:
2020-06-29 13:51:34
阅读次数:
113
一、下载免安装压缩包 https://dev.mysql.com/downloads/ 下载地址 二、本地环境配置 把zip包解压到需要安装的目录 ,会发现缺少data文件夹以及my.ini的配置文件 2.添加data文件夹以及my.ini环境配置 3. my.ini文件中添入一下内容并修改下面两项 ...
分类:
数据库 时间:
2020-06-29 09:43:12
阅读次数:
70
Welcome!!! to my presentation !, About friendship, and growth. When i was little(靠过来正式), i used to make many friends. no matter who they are!, we can ...
分类:
其他好文 时间:
2020-06-29 00:51:57
阅读次数:
104
1.概述 logstash是一个日志转化系统,用户通过定义一个input,filter,和一个output配置来完成日志的收集和存储工作。 2.数据类型 bool debug => true bytes my_bytes => "113" # 113 bytes string host => "ho ...
分类:
其他好文 时间:
2020-06-29 00:27:33
阅读次数:
65
Welcome!!! to my presentation !, About friendship, and growth. When i was little(靠过来正式), i used to make many friends. no matter who they are!, we can ...
分类:
其他好文 时间:
2020-06-29 00:25:26
阅读次数:
77
python 面向对象语言python中万物皆对象 将x转换为一个整数 # 定义一个字符串 my_str = "1234" my_num = int(my_str) print(type(my_num)) print(my_num) 将x转换为一个浮点数 my_str = "3.14" my_f = ...
分类:
编程语言 时间:
2020-06-28 22:20:42
阅读次数:
65