Redis是一种高级key-value数据库。它跟memcached类似,不过数据可以持久化,而且支持的数据类型很丰富。有字符串,链表,集合和有序集合。支持在服务器端计算集合的并,交和补集(difference)等,还支持多种排序功能。所以Redis也可以被看成是一个数据结构服务 器。 Redis的 ...
分类:
其他好文 时间:
2018-07-14 17:43:26
阅读次数:
168
题目链接:https://vjudge.net/contest/237052#problem/H Here we go! Let's define the diversity of a list of numbers to be the difference between the largest ...
分类:
其他好文 时间:
2018-07-14 14:53:11
阅读次数:
204
原文地址:https://www.cnblogs.com/softidea/p/6070314.html @Component is equivalent to @Service, @Controller , @Repository = {@Component + some more special ...
分类:
编程语言 时间:
2018-07-13 22:49:11
阅读次数:
241
A sequence of number is called arithmetic if it consists of at least three elements and if the difference between any two consecutive elements is the ...
分类:
编程语言 时间:
2018-07-12 20:16:45
阅读次数:
278
1, git fetch 和 git pull 参考链接: https://stackoverflow.com/questions/292357/what-is-the-difference-between-git-pull-and-git-fetch git pull = git fetch + ...
分类:
其他好文 时间:
2018-07-10 23:30:46
阅读次数:
152
emm,两天打的周赛,万年三题qaq,不过这次题目好像比上次的难一丢丢。 1.Transpose Matrix 把矩阵A[i][j]的每个元素改成B[j][i],超级超级大水题,然后wa了两发qaq。 2. Smallest Subtree with all the Deepest Nodes 一开 ...
分类:
其他好文 时间:
2018-07-10 21:38:39
阅读次数:
175
1、取差集1.1、listA对应listB的差集set(listA).difference(set(listB))1.2、listB对应listB的差集set(listB).difference(set(listA))2、取交集set(listA).i
分类:
编程语言 时间:
2018-07-10 17:53:27
阅读次数:
629
Given a binary tree rooted at root, the depth of each node is the shortest distance to the root. A node is deepest if it has the largest depth possibl ...
分类:
其他好文 时间:
2018-07-10 17:52:45
阅读次数:
176
Given an array A, we may rotate it by a non-negative integer K so that the array becomes A[K], A[K+1], A{K+2], ... A[A.length - 1], A[0], A[1], ..., A ...
分类:
其他好文 时间:
2018-07-06 13:10:10
阅读次数:
253
题目大意:给你\(A\)个a,\(B\)个b,\(C\)个c,要你构造一个字符串,使它的最小循环表示法最大。求这个表示法。解题思路:不知道怎么证,但把a、b、c当做单独的字符串扔进容器,每次把字典序最小的和字典序最大的两个字符串合并就是答案。容器用multiset即可。 C++ Code: ...
分类:
其他好文 时间:
2018-07-05 19:58:00
阅读次数:
201