Redis
redis是一个key-value存储系统。和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)、zset(sorted set –有序集合)和hash(哈希类型)。这些数据类型都支持push/pop、add/remove及取交集并集和差集及更丰富的操作,而且这些操作都是原子性的。在此基础上,redis支持各种不同方式的排序。与memcached一样,为了保证效率,数据都是缓存在内存中。区别的是redis会周期性的
面试25题:
题目:合并两个排序的链表
题:输入两个单调递增的链表,输出两个链表合成后的链表,当然我们需要合成后的链表满足单调不减规则。
解题思路一:递归,并需注意对空链表单独处理。
class Solution:
# 返回合并后列表
def Merge(self, pHead1, pHead2):
# write code here
if not pHead1:
return pHead2
elif no
使用Python3的数据结构和算法
This is my repository for Data Structures And Algorithm using Python3. This repository mainly aims at implementation of various Data Structures and Algorithm techniques. 拉维·帕巴里(Ravi Pabari) 亦称龙战士Fell free to contribute in other lang