Share Given an array of integers, 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once. Find all the elements that appe ...
分类:
其他好文 时间:
2020-05-14 11:11:27
阅读次数:
60
第一步先解压jar, 得到如下三个目录 依赖库位于:BOOT-INF\lib 下,此时我们发现大量jar文件,只能批量解压了。 批处理搞定: @echo off for %%I in (*.jar) do jar -xvf %%Ipause 解压后,利用findstr命令即可搜索特定字符串: fin ...
分类:
编程语言 时间:
2020-05-14 01:58:42
阅读次数:
120
P2949 [USACO09OPEN]Work Scheduling G 题目描述 Farmer John has so very many jobs to do! In order to run the farm efficiently, he must make money on the job ...
分类:
其他好文 时间:
2020-05-14 01:53:04
阅读次数:
115
1、显示占用系统内存最多的进程,并排序psaux--sout=-%mem2、编写脚本,使用for和while分别实现192.168.0.0/24网段内,地址是否能够ping通,若ping通则输出“success!”,若不通则输出“fail!”使用for循环:#!/bin/bashNETID=192.168.0forHOSTIDin{1..254};do{ping-c1-W1$NETID.$HOST
分类:
其他好文 时间:
2020-05-13 09:45:05
阅读次数:
71
Do the Real Thing May, 2020 | Comments | Share Success largely boils down to a simple distinction. It’s glaringly obvious once you see it, but also ea ...
分类:
其他好文 时间:
2020-05-13 09:41:28
阅读次数:
83
Abstract: What do you think about the question? Does the 64 bits always do better? The answer is NO. When we talk about 64 bit vs. 32 bit we mean two ...
分类:
其他好文 时间:
2020-05-12 20:12:53
阅读次数:
84
1.安装nginx依赖的程序 yum install gcc;yum install pcre-devel;yum install zlib zlib-devel;yum install openssl openssl-devel;2.下载nginx wget http://nginx.org/do ...
分类:
Web程序 时间:
2020-05-12 13:51:12
阅读次数:
69
1 void quick_sort(int q[], int l, int r) 2 { 3 if (l >= r) return; 4 5 int i = l - 1, j = r + 1, x = q[l + r >> 1]; 6 while (i < j) 7 { 8 do i ++ ; wh ...
分类:
编程语言 时间:
2020-05-12 00:03:55
阅读次数:
84
前情提要 正文详解 VO O/R Mapper PO VO与PO区别 BO POJO DAO(常用) DTO(较少用,过渡作用) TO QO DO前情提要核心概念实体类在不同应用层面的表述个人建议因为我学习本文的知识是源于对后台的进一步理解,所以如果你结合SpringMVC的话,理解可能感觉更好一点 ...
分类:
编程语言 时间:
2020-05-11 14:55:43
阅读次数:
128
1、volume #启动一个容器 -v定义volume的名字以及volume的目录-e是环境变量 docker run -d -v mysql:/var/lib/mysql --name mysql1 -e MYSQL_ALLOW_EMPTY_PASSWORD=true mysql #进入容器 do ...
分类:
其他好文 时间:
2020-05-10 19:19:35
阅读次数:
57