描述Implement wildcard paern matching with support for '?' and '*'.'?' Matches any single character. '*' Matches any sequence of characters (including ...
分类:
编程语言 时间:
2018-06-16 10:34:48
阅读次数:
210
1.CentOS7系列防火墙 CentOS7默认使用firewall作为防火墙,这里改为iptables防火墙步骤 firewall-cmd --state #查看默认防火墙状态 (关闭后显示 not running ,开启后 running) CentOS7默认使用firewall作为防火墙,这里 ...
分类:
其他好文 时间:
2018-06-16 10:34:39
阅读次数:
178
数组 很多的数据的集合定义: 数组元素:数组里面的值 数组下标(索引)作用;指明元素在数组中的位置:从0开始; 例子: arr[0]为取数组下标为0的第一个元素 数组长度:arr.length 数组方法: join() //数组转字符串 例子: 通过join()方法可以实现重复字符串,只需传入字符串 ...
分类:
编程语言 时间:
2018-06-16 10:34:31
阅读次数:
187
JDBC实现批处理有两种方式:statement和preparedstatement 一、使用Statement完成批处理 1.1、使用Statement完成批处理范例 1、使用Statement对象添加要批量执行SQL语句,如下: 2、执行批处理SQL语句:Statement.executeBat ...
分类:
数据库 时间:
2018-06-16 10:34:22
阅读次数:
228
mybutton.addEventListener('click', (e) => { let request = new XMLHttpRequest() request.onreadystatechange = () => { if(request.readyState === 4) { con... ...
分类:
Web程序 时间:
2018-06-16 10:34:14
阅读次数:
224
Implement a function to check if a binary tree is balanced. For the purpose of this question, a balanced tree is defined to be a tree such that the he ...
分类:
其他好文 时间:
2018-06-16 10:34:06
阅读次数:
169
一、为什么要使用分布式锁 为了保证一个方法或属性在高并发情况下的同一时间只能被同一个线程执行,在传统单体应用单机部署的情况下,可以使用Java并发处理相关的API(如ReentrantLock或Synchronized)进行互斥控制。但是,随着业务发展的需要,原单体单机部署的系统被演化成分布式集群系 ...
分类:
其他好文 时间:
2018-06-16 10:33:57
阅读次数:
193
移动端页面布局 移动端app分类 1、Native App 原生app手机应用程序使用原生的语言开发的手机应用,Android系统用的是java,iOS系统用的是object-C 2、Hybrid App 混合型app手机应用程序混合使用原生的程序和html5页面开发的手机应用 3、Web App ...
分类:
移动开发 时间:
2018-06-16 10:33:51
阅读次数:
224
问题描述: Given a positive integer, return its corresponding column title as appear in an Excel sheet. For example: Example 1: Example 2: Example 3: 解题思路: ...
分类:
其他好文 时间:
2018-06-16 10:33:42
阅读次数:
146
数组定义 用来存储固定大小的同类型元素,元素可以是基本数据类型,也可以是引用数据类型 如何声明一个数组 声明的方式有两种: 或者 其中,type 为Java中的任意数据类型,包括基本类型和引用类型,arrayName为数组名,必须是一个合法的标识符,[ ] 指明该变量是一个数组类型变量。 与C、C+ ...
分类:
编程语言 时间:
2018-06-16 10:33:35
阅读次数:
177
1:创建时机 1:这个浏览器在servlet中第一次使用session的时候会创建; 2:这个浏览器第一次访问jsp的时候,服务器也会为这个浏览器创建一个session对象; 2:销毁时机 1:程序员调用invalidate方法;(立刻销毁) 2:设置的存活时间到了;(默认是30分钟) 3:服务器非 ...
分类:
其他好文 时间:
2018-06-16 10:33:21
阅读次数:
162
1、首先检查linux有没有安装python-pip包,直接执行 yum install python-pip 2、没有python-pip包就执行命令 yum -y install epel-release (3)、执行成功之后,再次执行yum install python-pip (4)、对安装 ...
分类:
编程语言 时间:
2018-06-16 10:33:15
阅读次数:
143
一、postMessage window.postMessage() 方法可以安全地实现跨源通信。通常,对于两个不同页面的脚本,只有当执行它们的页面位于具有 相同的协议 (通常为https),端口号(443为https的默认值),以及主机(两个页面的模数 Document.domain设置为相同的值 ...
分类:
其他好文 时间:
2018-06-16 10:33:09
阅读次数:
143
1 #!/usr/bin/env python 2 # -*- coding: UTF-8 -*- 3 #by i3ekr 4 5 import re,optparse,sys,requests,time,os 6 7 parse = optparse.OptionParser(usage="pyt... ...
分类:
其他好文 时间:
2018-06-16 10:32:56
阅读次数:
904
Implement a function to check if a binary tree is a binary search tree. 这道题很经典,让我们判断一棵树是不是二叉查找树。但是首先要确定一下二叉查找树的定义,比如leetcode 98题中的定义左<根<右就可以直接通过判断中序遍历 ...
分类:
其他好文 时间:
2018-06-16 10:32:49
阅读次数:
156
Int int是我们常说的整型数字,是Java的8个原始数据类型(Primitive Type:boolean、byte、short、char、int、float、double、long)之一。Java语言虽然号称一切都是对象,但原始数据是例外。 Integer Integer是int对应的包装类, ...
分类:
编程语言 时间:
2018-06-16 10:32:43
阅读次数:
173
问题描述: Given a string, your task is to count how many palindromic substrings in this string. The substrings with different start indexes or end indexes ...
分类:
其他好文 时间:
2018-06-16 10:32:33
阅读次数:
147