package com.dai.tree; public class ArrBinaryTreeDemo { public static void main(String[] args) { // TODO Auto-generated method stub int[] arr = {1,2,3, ...
分类:
其他好文 时间:
2021-02-27 13:26:43
阅读次数:
0
最左匹配原则 DROP TABLE IF EXISTS employees; CREATE TABLE employees( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(24) NOT NULL DEFAULT '' COMMENT '姓 ...
分类:
数据库 时间:
2021-02-27 13:21:23
阅读次数:
0
问题 字谜的迷面 puzzle 按字符串形式给出,如果一个单词 word 符合下面两个条件,那么它就可以算作谜底: 单词 word 中包含谜面 puzzle 的第一个字母。 单词 word 中的每一个字母都可以在谜面 puzzle 中找到。 例如,如果字谜的谜面是 "abcdefg",那么可以作为谜 ...
分类:
其他好文 时间:
2021-02-27 13:19:41
阅读次数:
0
<H3C>dis cu # version 7.1.070, Release 6318P01 # sysname H3C # irf mac-address persistent timer irf auto-update enable undo irf link-delay irf member ...
分类:
其他好文 时间:
2021-02-25 11:57:16
阅读次数:
0
Fiddler实现弱网的测试 无论是做web端还是app端的测试,我们都需要对弱网进行测试,对于弱网方法有很多种,如:Fiddler模拟弱网,控制电脑的网速等,今天介绍下Fiddler如何进行弱网测试。 1、Fiddler中启动弱网 打开Fiddler,Rules->Performance->勾选 ...
分类:
其他好文 时间:
2021-02-25 11:46:31
阅读次数:
0
一、Mybatis层 数据库 CREATE DATABASE `ssmbuild`; USE `ssmbuild`; DROP TABLE IF EXISTS `books`; CREATE TABLE `books` ( `bookID` INT(10) NOT NULL AUTO_INCREME ...
分类:
其他好文 时间:
2021-02-24 12:59:25
阅读次数:
0
说明:当前测试为thinkphp5环境下的代码、不考虑用户uid问题,只考虑库存问题 准备: 1. 新建两个表(goods、orders) CREATE TABLE `goods` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT ...
分类:
其他好文 时间:
2021-02-23 14:30:21
阅读次数:
0
创建型-单例模式 class SingletonOne { private static $singletonOne = null; public function ok() { echo 'ok'; } public static function getInstance(){ if (self: ...
分类:
Web程序 时间:
2021-02-23 14:14:02
阅读次数:
0
Oracle OCP 19c 认证1Z0-082考试题库(第5题)-CUUG收集整理 5.A database is configured to use automatic undo management with temporary undo enabled. An UPDATE is execu ...
分类:
数据库 时间:
2021-02-23 14:07:10
阅读次数:
0
Spring Boot2入门 1.使用idea新建一个名为boot的Maven工程。 2.点击右下角的“Enable Auto-Import”选项,idea将会自动下载相关的依赖包。 3.点击boot目录下的pom.xml文件,引入以下依赖: <parent> <groupId>org.spring ...
分类:
编程语言 时间:
2021-02-22 12:18:59
阅读次数:
0