码迷,mamicode.com
首页 >  
搜索关键字:sorted    ( 5925个结果
3.7.1 Redis介绍和安装
Redis介绍redis是业界主流的key-value nosql 数据库之一。和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)、zset(sorted set --有序集合)和hash(哈希类型)。这些数据类型都支持push... ...
分类:其他好文   时间:2020-02-05 16:41:01    阅读次数:66
LeetCode练题——35. Search Insert Position
1、题目 35. Search Insert Position Easy 1781214Add to ListShare Given a sorted array and a target value, return the index if the target is found. If not, ...
分类:其他好文   时间:2020-02-05 12:03:43    阅读次数:66
Jdk8中Stream流的使用,让你脱离for循环
学习要求: 知道一点儿函数式接口和Lambda表达式的基础知识,有利于更好的学习。 1.先体验一下Stream的好处 需求:给你一个ArrayList用来保存学生的成绩,让你打印出其中大于60的成绩。 解决方案二: 使用Stream流操作,只需要一行代码 2.什么是Stream流? 在Jdk1.8中 ...
分类:其他好文   时间:2020-02-05 09:40:46    阅读次数:104
02-Python之函数
1、掌握函数的定义和调用。 2、掌握位置参数、关键字参数和参数默认值的使用。 3、掌握参数返回值的定义和使用。 使用函数的目的:①提高代码复用性 ②分而治之 模块化设计的思想,将问题分解为一系列小问题 ③利于代码的维护和管理 函数的三要素:参数、函数体、返回值 1、定义 def 函数名 (参数): ...
分类:编程语言   时间:2020-02-04 23:46:36    阅读次数:92
【leetcode】23.合并K个排序链表
https://leetcode cn.com/problems/merge k sorted lists/ 这道题的前置题目是合并两个排序链表 https://leetcode cn.com/problems/merge two sorted lists/ 1. 暴力法 将所有链表合并后排序 时间 ...
分类:编程语言   时间:2020-02-04 10:50:02    阅读次数:56
刷题23. Merge k Sorted Lists
一、题目说明 这个题目是23. Merge k Sorted Lists,归并k个有序列表生成一个列表。难度为Hard,实际上并不难,我一次提交就对了。 二、我的解答 就是k路归并,思路很简单,实现也不难。 不过,性能一般: 三、优化措施 上面的实现,之所以性能不足,在于一次归并一个队列,用的是插入 ...
分类:其他好文   时间:2020-02-04 10:38:51    阅读次数:75
[LeetCode 955] Delete Columns to Make Sorted II
We are given an array A of N lowercase letter strings, all of the same length. Now, we may choose any set of deletion indices, and for each string, we ...
分类:其他好文   时间:2020-02-04 10:24:21    阅读次数:67
6-15 Iterative Mergesort (25分)
How would you implement mergesort without using recursion? The idea of iterative mergesort is to start from N sorted sublists of length 1, and each ti ...
分类:其他好文   时间:2020-02-03 13:35:41    阅读次数:117
8.2.1输入分片InputSplit和输入处理格式FileInputFormat
1.1.1 输入分片和记录 (1)输入分片InputSplit接口 输入分片一般是文件,也可以数据库中的若干行。记录对应一行数据。输入分片在java表示为InputSplit接口,getlength函数返回大小,用于分片排序,大的先处理。Getlocation函数返回分片位置,让map任务尽量本地化 ...
分类:其他好文   时间:2020-02-03 11:30:47    阅读次数:69
leetcode1342
1 class Solution: 2 def minSetSize(self, arr: 'List[int]') -> int: 3 m = len(arr) 4 dic = {} 5 for i in range(m): 6 if arr[i] in dic: 7 dic[arr[i]] += ...
分类:其他好文   时间:2020-02-02 14:01:32    阅读次数:59
5925条   上一页 1 ... 31 32 33 34 35 ... 593 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!