数据链路层(ARP):扫描速度快,但是只能在同网段内进行扫描。 arping命令: -c only send count requests -d find duplicate replies 发现重复IP地址 主机发现: arping -c 1 192.168.1.1 #若该主机存活,将返回其MAC ...
分类:
其他好文 时间:
2019-09-26 00:28:50
阅读次数:
101
题目链接:https://leetcode-cn.com/problems/contains-duplicate/ 给定一个整数数组,判断是否存在重复元素。 如果任何值在数组中出现至少两次,函数返回 true。如果数组中每个元素都不相同,则返回 false。 示例 1: 输入: [1,2,3,1]输 ...
分类:
其他好文 时间:
2019-09-26 00:20:22
阅读次数:
86
:ets.new(table_name, pattern) 第一个参数是表名,第二个参数是表的设置选项。 :set 一个key,一个数据,无序 :ordered_set 一个key,一个数据,有序; 1 == 1.0 :bag 一个key,多个数据, 不可重复 :duplicate_bag 一个ke ...
分类:
其他好文 时间:
2019-09-25 12:54:41
阅读次数:
127
今天练习分布式配置中心,写config-client配置文件,使用bootstrap.properties配置,运行没有问题。 bootstrap.properties: 但是我使用了bootstrap.yml配置文件,启动报错: bootstrap.yml: 报错如下: 报错信息显示无法加载配置文 ...
分类:
编程语言 时间:
2019-09-22 23:44:46
阅读次数:
255
Given a set of distinct integers, nums, return all possible subsets (the power set). Note: The solution set must not contain duplicate subsets. Exampl ...
分类:
其他好文 时间:
2019-09-22 10:40:08
阅读次数:
113
Given a list of N student records with name, ID and grade. You are supposed to sort the records with respect to the grade in non increasing order, and ...
分类:
其他好文 时间:
2019-09-20 00:28:44
阅读次数:
107
缓存分为本地缓存和远端缓存。常见的远端缓存有Redis,MongoDB;本地缓存一般使用map的方式保存在本地内存中。一般我们在业务中操作缓存,都会操作缓存和数据源两部分。如:put数据时,先插入DB,再删除原来的缓存;ge数据时,先查缓存,命中则返回,没有命中时,需要查询DB,再把查询结果放入缓存 ...
分类:
系统相关 时间:
2019-09-19 01:13:23
阅读次数:
178
准备 建表与数据准备 建表 create table department( id int, name varchar(20) ); create table employee( id int primary key auto_increment, name varchar(20), sex enu ...
分类:
其他好文 时间:
2019-09-17 13:25:06
阅读次数:
78
1. "82. Remove Duplicates from Sorted List II (Medium)" Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinc ...
分类:
其他好文 时间:
2019-09-17 11:04:42
阅读次数:
87
问题 当同一个页面同时存在两个或两个以上的 v-for 遍历的时候,在不同环境中存在以下两种不同的warning: 代码(两个v-for): H5端: 页面正常渲染,但是控制台有以下提示: Duplicate keys detected: '0'. This may cause an update ...
分类:
移动开发 时间:
2019-09-17 09:44:42
阅读次数:
827