// language C with STL(C++) // 剑指44 // https://leetcode-cn.com/problems/shu-zi-xu-lie-zhong-mou-yi-wei-de-shu-zi-lcof/ // 同主站400题 // https://leetcode- ...
分类:
其他好文 时间:
2021-02-06 11:54:26
阅读次数:
0
<%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@include file="/context/mytags.jsp"%> <! ...
分类:
其他好文 时间:
2021-02-06 11:50:36
阅读次数:
0
建造者模式 1 盖房项目需求 1) 需要建房子:这一过程为打桩、砌墙、封顶 2) 房子有各种各样的,比如普通房,高楼,别墅,各种房子的过程虽然一样,但是要求不要相同的. 3) 请编写程序,完成需求. 2 传统方式解决盖房需求 1) 思路分析(图解) 2) 代码 AbstractHouse类 pack ...
分类:
其他好文 时间:
2021-02-04 12:15:01
阅读次数:
0
命令: composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/ 阿里云目前已经正式上线PHP Composer全量镜像,所有PHP开发者都可以通过我们的开发者社区 developer.aliyun ...
分类:
其他好文 时间:
2021-02-04 11:53:25
阅读次数:
0
ubuntu中安装kernel-devel sudo apt-get install linux-kernel-headers kernel-package ...
分类:
系统相关 时间:
2021-02-04 11:46:36
阅读次数:
0
1.关系型数据库: MySQL/Oracle/PostSQL 1.InnoDB引擎,事务处理机制 由于mysql中有两套日志机制,一套是存储层的redo log,另一套是server层的binlog,每次更新数据都要对两个日志进行更新。为了防止写日志时只写了其中一个而没有写另外一个,mysql使用了 ...
分类:
编程语言 时间:
2021-02-03 11:05:13
阅读次数:
0
// language c // 剑指64 // https://leetcode-cn.com/problems/qiu-12n-lcof/ int sumNums(int n){ int ans = n; (n) &&(ans +=sumNums(n-1)); return ans; } ...
分类:
其他好文 时间:
2021-02-01 12:39:49
阅读次数:
0
Demo11地址:http://42.194.219.152:8099/Movies Web应用MVC 在 Startup.cs 文件的 Configure 方法中设置路由格式。 app.UseEndpoints(endpoints => { endpoints.MapControllerRoute ...
分类:
Web程序 时间:
2021-02-01 12:35:23
阅读次数:
0
// language c // 剑指04 // https://leetcode-cn.com/problems/er-wei-shu-zu-zhong-de-cha-zhao-lcof/ bool findNumberIn2DArray(int** matrix, int matrixSize, ...
分类:
其他好文 时间:
2021-01-30 12:17:05
阅读次数:
0
官方文档解读 TextRecognitionDataGenerator’s documentation Since the name is quite long, all subsequent refrences will be under the acronym TRDG. If you are ...
分类:
其他好文 时间:
2021-01-30 12:09:59
阅读次数:
0