下载eslasticSearch(本次使用6.5.4的windows版本) https://www.elastic.co/cn/downloads/past-releases 下载ik中文分词器(对应es的版本 下载zip) https://github.com/medcl/elasticsearc ...
分类:
其他好文 时间:
2020-08-01 12:35:01
阅读次数:
94
题目描述 给出一个二维字符数组和一个单词,判断单词是否在数组中出现, 单词由相邻单元格的字母连接而成,相邻单元指的是上下左右相邻。同一单元格的字母不能多次使用。 例如: 给出的字符数组= [? ["ABCE"],? ["SFCS"],? ["ADEE"]?] 单词 ="ABCCED", -> 返回 ...
分类:
其他好文 时间:
2020-08-01 12:34:49
阅读次数:
78
在任何GUI设计中,按钮都是最重要的常用的触发动作请求的方式,用来和用户进行交互操作。在PyQt中根据不同的使用场景将按钮划分为不同的表现形式。按钮的积累是QAbstractButton,提供了按钮的通用性功能。QAbstractButton类为抽象类,不能实例化,必须有其他的按钮类继承Qabstr ...
分类:
其他好文 时间:
2020-08-01 12:34:24
阅读次数:
69
package newleetcode;/** * 搜索插入位置 * 不存在该数据即插入顺序数组适当位置 */public class LeetCode35 { public int search(int[] nums,int val){ for(int i=0;i<nums.length;i++) ...
分类:
其他好文 时间:
2020-08-01 09:19:56
阅读次数:
87
Web 开发人员的移动Blazor开发系列 1 Blazor 移动开发-起步 译自: https://chrissainty.com/getting-started-with-mobile-blazor-bindings/ 这是系列博客文章中的第一篇,将探索新的实验性Mobile Blazor Bi ...
分类:
移动开发 时间:
2020-07-31 12:31:27
阅读次数:
144
使用docker安装非常方便,避免一步步的配置 ##查找包含zabbix proxy sqlite的镜像 docker search zabbix ##下载镜像(使用sqlite3比较轻便,也可以使用mysql的) docker pull docker.io/zabbix/zabbix-proxy- ...
分类:
其他好文 时间:
2020-07-30 22:20:22
阅读次数:
111
#include <stdlib.h> #include <stdio.h> //二分查找非递归 int Binary_Search(int list[],int key,int length){ int low=0,high=length-1; while (low<=high){ int mid ...
分类:
其他好文 时间:
2020-07-30 21:44:08
阅读次数:
69
1.安装VirtualBox和Vagrant 在win10下先安装VirtualBox然后再安装Vagrant。我这里用的VirtualBox6.0.8,Vagrant_2.2.4_x86_64。 2.下载box 我这里用的Centos7 https://cloud.centos.org/cento ...
分类:
其他好文 时间:
2020-07-30 18:13:59
阅读次数:
79
Cobbler安装VMwareESXi6.0ks文件:[root@sky~]#cd/var/lib/cobbler/kickstarts/[root@skykickstarts]#cpsample_esxi5.kssample_esxi5.ks.bak[root@skykickstarts]#vimsample_esxi5.ks##Samplescriptedinstallationfile#fo
分类:
系统相关 时间:
2020-07-30 10:58:41
阅读次数:
101
import { createMachine, assign, interpret } from "xstate"; const elBox = document.querySelector("#box"); const elBody = document.body; const assignPoi ...
分类:
其他好文 时间:
2020-07-29 21:41:14
阅读次数:
60