package com.jeesite.modules.jiQiao.web;import com.google.common.collect.Lists;import java.util.ArrayList;import java.util.Collections;public class Dem ...
分类:
编程语言 时间:
2020-07-26 22:57:16
阅读次数:
89
1.BeanUtils位于org.apache.commons.beanutils.BeanUtils 完整方法: BeanUtils.populate( Object bean, Map properties ), 这个方法会遍历map<key, value>中的key,如果bean中有这个属性, ...
分类:
编程语言 时间:
2020-07-26 22:51:58
阅读次数:
64
Docker安装与卸载 Docker安装 要安装 Docker Engine,你需要一个 CentOS 7.x 或以上版本。 卸载旧版本 yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker ...
分类:
其他好文 时间:
2020-07-26 19:42:26
阅读次数:
77
A.Common Subsequence 题意 给你两组数,问你有没有相同 的书,有的话,输出最短的那组(大家都知道,1是最小的) AC ?#include<bits/stdc++.h> using namespace std; const int N = 1005; int a[N], x, n, ...
分类:
其他好文 时间:
2020-07-26 00:42:50
阅读次数:
59
一、框架菜单 1.1 common模块 1.2 其他 二、Excel接口测试案例编写 三、读取Excel测试封装(核心封装) excel_utils.py 读取Excel中的数据 import os import xlrd #内置模块、第三方模块pip install 自定义模块 class Exc ...
分类:
编程语言 时间:
2020-07-26 00:29:33
阅读次数:
79
##题面 he length of the longest common prefix of two strings s=s1s2…sn and t=t1t2…tm is defined as the maximum integer k (0≤k≤min(n,m)) such that s1s2…s ...
分类:
其他好文 时间:
2020-07-26 00:15:56
阅读次数:
106
地址:http://codeforces.com/contest/1384/problem/A 题意: 输出n+1个字符串,si和si+1的公共前缀长为ai 解析: 一个一个补的话,会很麻烦。 看范围:ai<=50,就是说前缀最长为50,那么考虑把所有字符串长度都构造为长度>50,那么对于每一个ai ...
分类:
其他好文 时间:
2020-07-26 00:02:58
阅读次数:
54
1.报版本不一致 打完文件 org.eclipse.wst.common.project.facet.core.xml 把这2个地方版本号修改,上面jst.web那个和web.xml一样,下面是jdk版本 ...
分类:
系统相关 时间:
2020-07-24 15:52:50
阅读次数:
78
题目描述 给定一个包含非负整数的 m x n 网格,请找出一条从左上角到右下角的路径,使得路径上的数字总和为最小。 说明:每次只能向下或者向右移动一步。 示例: 输入: [ [1,3,1], [1,5,1], [4,2,1] ] 输出: 7 解释: 因为路径 1→3→1→1→1 的总和最小。 题解 ...
分类:
其他好文 时间:
2020-07-24 09:30:16
阅读次数:
54
gitee pull 完整代码到本地 git clone https://gitee.com/jyycool/rethinkdb.git 到目标目录 cd rethinkdb 编译 ./configure --allow-fetch make 安装 sudo make install 注:http: ...
分类:
数据库 时间:
2020-07-23 22:17:54
阅读次数:
90