: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
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
①英文题目: Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] a ...
分类:
其他好文 时间:
2019-09-15 01:16:06
阅读次数:
93
题目连接: https://leetcode-cn.com/problems/find-duplicate-subtrees/ 题目大意: 中文题 具体思路: 将每一颗子树转换成字符串,然后通过unordered_map去重即可(map的速度较慢) AC代码: ...
分类:
其他好文 时间:
2019-09-13 17:50:19
阅读次数:
93
Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand. (i.e., [0,1,2,4,5,6,7] might become [4,5,6,7,0,1,2]). F ...
分类:
其他好文 时间:
2019-09-13 10:39:49
阅读次数:
100
为什么要使用请求缓存这种策略,官方给出的答案是: Different code paths can execute Hystrix Commands without concern of duplicate work. 白话文大概就是:不同的调用方,可以不必去处理一些重复的操作 这种模式在一个大型系 ...
分类:
其他好文 时间:
2019-09-11 23:42:17
阅读次数:
91
让人瑟瑟发抖的面试题。。。来我们看一下题目在一个长度为n+1的数组里的所有数字都在1~n的范围内,所以数组中至少有一个数字是重复的。请找出数组中任意一个重复的数字,但不能修改输入的数组。注意:时间复杂度O(n),空间复杂度O(1)找出数组中重复的数字(c语言)怎么解决勒???分析:利用题目中元素处于1~n的范围,把元素分为两组,判断两组元素个数,如果大于范围,则重复的数字就在这个范围内。例如:1~
分类:
编程语言 时间:
2019-09-09 21:03:00
阅读次数:
412