码迷,mamicode.com
首页 >  
搜索关键字:do it    ( 12356个结果
442. Find All Duplicates in an Array
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
windows下批量解压jar并查找特定字符串
第一步先解压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
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
Does the 64-bit processor always perform better than 32-bits?
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
linux安装nginx并启动https服务协议
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
java中PO、VO、BO、POJO、DAO、DTO、TO、QO的理解
前情提要 正文详解 VO O/R Mapper PO VO与PO区别 BO POJO DAO(常用) DTO(较少用,过渡作用) TO QO DO前情提要核心概念实体类在不同应用层面的表述个人建议因为我学习本文的知识是源于对后台的进一步理解,所以如果你结合SpringMVC的话,理解可能感觉更好一点 ...
分类:编程语言   时间:2020-05-11 14:55:43    阅读次数:128
docker的持久化
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
12356条   上一页 1 ... 42 43 44 45 46 ... 1236 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!