码迷,mamicode.com
首页 >  
搜索关键字:sorted    ( 5925个结果
21. 合并两个有序链表
21. 合并两个有序链表 https://leetcode cn.com/problems/merge two sorted lists/ | 难度 | 完成日期 | 耗时 | 提交次数 | | | | | | | 简单 | 2020 1 10 | 0.5 小时 | 1 | 问题描述 将两个有序链表 ...
分类:其他好文   时间:2020-01-10 23:48:52    阅读次数:92
LeetCode #275 H-Index II
Question Given an array of citations sorted in ascending order (each citation is a non-negative integer) of a researcher, write a function to compute ...
分类:其他好文   时间:2020-01-10 00:53:46    阅读次数:74
Redis简单操作
[TOC] Redis简介 Redis以键值对的形式储存数据 Redis支持的数据类型有:string、list、set、zset(sorted set)、hash Redis特点: 响应速度快,数据量小 Redis以内存作为数据存储介质,所以读写数据的效率极高 安装 下载地址: "windows版 ...
分类:其他好文   时间:2020-01-10 00:46:57    阅读次数:91
Java自学-集合框架 聚合操作
聚合操作 步骤 1 : 聚合操作 JDK8之后,引入了对集合的聚合操作,可以非常容易的遍历,筛选,比较集合中的元素。 像这样: String name =heros .stream() .sorted((h1,h2) h1.hp h2.hp? 1:1) .skip(2) .map(h h.getNa ...
分类:编程语言   时间:2020-01-09 20:42:29    阅读次数:72
python的数据类型
1. 数字 #整型 print(int(3.41)) #浮点型 print(float(3)) #复数 print(complex(2,3)) #四舍五入为整数 print(round(3.45)) 2. 字符串 #字符串str a=' asDf ' #字符串首字母大写 print(a.title( ...
分类:编程语言   时间:2020-01-09 20:38:49    阅读次数:86
根据列表中字典中的某个value排序
1 li = [{'a':1,'b':4},{'a':2,'b':3},{'a':3,'b':2},{'a':4,'b':1}] 2 print('li',li) 3 #根据a的值倒序排序 4 liNew = sorted(li,key=lambda e:e.__getitem__('a'),rev ...
分类:编程语言   时间:2020-01-09 20:30:59    阅读次数:77
[LC] 108. Convert Sorted Array to Binary Search Tree
Given an array where elements are sorted in ascending order, convert it to a height balanced BST. For this problem, a height-balanced binary tree is d ...
分类:其他好文   时间:2020-01-09 13:08:36    阅读次数:69
Sorted 内置函数的排序使用
Sorted 内置函数的排序使用 Sorted 排序列表 1、倒序对列表进行排序 打印结果: [1, 3, 4, 6, 7, 23] 2、正序对列表进行排序 打印结果: [23, 7, 6, 4, 3, 1] Sorted 排序字典 1、对字典中的Key值进行降序排列 Sorted函数中的Key参数 ...
分类:编程语言   时间:2020-01-08 19:18:50    阅读次数:119
Memcache 与 Redis 的区别都有哪些?
1.redis是单进程单线程的。使用了I/O多路复用器,高并发情况下不存在数据安全问题;Memcache是单进程多线程的2.Redis存储K-V结构的数据,Value支持多种数据类型,有String,Hash,Set,SortedSet,List类型;Memcache仅支持简单的k-v结构3.Red ...
分类:系统相关   时间:2020-01-08 12:40:21    阅读次数:94
C#中枚举的使用
枚举大家都不陌生,但是最近看到有的人,还在是页面上写死,如果枚举增减时,还要去页面去手动修改,今天我们来看看枚举的处理方式,这里说一下,我用的测试程序是.net core 3.1。 不多墨迹,直接上代码: 定义枚举: 枚举的辅助类,这里说明一下,我是通过获取枚举上的特性来处理的: EnumUtil. ...
分类:Windows程序   时间:2020-01-07 22:51:12    阅读次数:157
5925条   上一页 1 ... 36 37 38 39 40 ... 593 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!