码迷,mamicode.com
首页 >  
搜索关键字:sorted    ( 5925个结果
Redis初识
第1章 Redis初识 Redis 是什么 开源 基于键值的存储服务系统 多种数据结构 strings hash linked list sets sorted sets 高性能、功能丰富 Redis 的特性 速度快 持久化 多种数据结构 支持多种编程语言 功能丰富 简单 主从复制 高可用、分布式 ...
分类:其他好文   时间:2021-01-25 11:08:42    阅读次数:0
HIve 的函数
#Hive 的函数 ##1.系统内置函数 1)查看系统自带的函数 show functions; show functions like "date"; 2)显示自带的函数的用法 desc function upper; desc function 'current_date' 记住带下划线的需要加 ...
分类:其他好文   时间:2021-01-25 11:02:17    阅读次数:0
[Leetcode]4. Median of Two Sorted Arrays
题目描述 Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays. Follow up: The overall run time ...
分类:其他好文   时间:2021-01-19 12:12:17    阅读次数:0
redis五种基本类型
String类型 set k1 aaa append k1 "bbb" getrange k1 0 -1 setrange k1 5(不能负数) ccc 替换,不够就补 object help object encoding k1 字符串是 embstr、raw、int incr k2 incrby ...
分类:其他好文   时间:2021-01-18 11:21:29    阅读次数:0
0088. Merge Sorted Array (E)
Merge Sorted Array (E) 题目 Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: The number of elements in ...
分类:其他好文   时间:2021-01-13 11:10:22    阅读次数:0
NIPS2020 论文下载 代码
1 # %% NIPS 2020 论文信息下载 2 import json 3 import os 4 import re 5 6 import pandas as pd 7 import requests 8 import tqdm 9 from bs4 import BeautifulSoup ...
分类:其他好文   时间:2021-01-12 10:46:54    阅读次数:0
python中对列表去重复
1、 >>> test1 = ["aaa","bbb","aaa","aaa","ccc","ccc","ddd","eee"] >>> test2 = [] >>> for i in test1: if i not in test2: test2.append(i) >>> test2 ['aaa ...
分类:编程语言   时间:2021-01-05 10:42:44    阅读次数:0
四大高阶函数
四大高阶函数: map、reduce、filter、sorted 1.map函数: 根据提供的函数对指定序列做映射 使用可迭代对象(指定的序列)中的每个元素调用函数,将返回值作为新可迭代对象元素;返回值为新的可迭代对象。 map函数的参数第一个为自定义的函数,这里没有括号 第二个参数不仅仅是列表类型 ...
分类:其他好文   时间:2020-12-23 11:40:13    阅读次数:0
py--操作Redis
一、redis redis是一个key-value存储系统。和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)、zset(sorted set --有序集合)和hash(哈希类型)。这些数据类型都支持push/pop、add/r ...
分类:其他好文   时间:2020-12-17 12:34:39    阅读次数:2
什么是Redis?
Remote Dictionary Server(Redis)是一个开源的使用ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value 数据库,并提供多种语言的API。它通常被称为数据结构服务器,因为值(value)可以是 字符串(String), 哈希(Map), 列表(l ...
分类:其他好文   时间:2020-12-10 11:28:01    阅读次数:8
5925条   上一页 1 2 3 4 5 6 ... 593 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!