码迷,mamicode.com
首页 >  
搜索关键字:sorted    ( 5925个结果
python基础数据类型之字典+集合
一、数据类型之字典 字典是python中唯一的映射类型,采用键值对(key-value)的形式存储数据。python对key进行哈希函数运算,根据计算的结果决定value的存储地址,所以字典是无序存储的,且key必须是可哈希的。可哈希表示key必须是不可变类型,如:数字、字符串、元组。 字典(dic ...
分类:编程语言   时间:2019-12-28 20:36:12    阅读次数:81
Redis常用API和持久化机制
Redis常用API和持久化机制 一、Redis常用API 参考命令:http://redisdoc.com/geo/index.html Redis支持的数据类型比较广泛,例如:string(字符串)、list(链表)、set(集合)、hash(哈希类型和zset(sorted set --有序集 ...
分类:Windows程序   时间:2019-12-28 13:10:34    阅读次数:101
mysql 查询所有父级,子级
mysql 遍历查询所有父级: SELECT T1._id groupID FROM ( SELECT @r AS _id, (SELECT @r := fbh FROM business_group WHERE bh = _id) AS fbh, @l := @l + 1 AS lvl FROM ...
分类:数据库   时间:2019-12-26 14:45:11    阅读次数:506
将一个10个元素的一维数组用函数调用实现选择排序。
#include<stdio.h>void main(){ int x[10],i; void sort(int array[10]); for(i=0;i<10;i++) scanf("%d,",x[i]); sort(x); printf("The sorted array:\n"); for( ...
分类:编程语言   时间:2019-12-26 13:32:49    阅读次数:159
LeetCode 33 搜索旋转排序数组
链接:https://leetcode-cn.com/problems/search-in-rotated-sorted-array 假设按照升序排序的数组在预先未知的某个点上进行了旋转。 ( 例如,数组 [0,1,2,4,5,6,7] 可能变为 [4,5,6,7,0,1,2] )。 搜索一个给定的 ...
分类:编程语言   时间:2019-12-25 01:40:40    阅读次数:81
LeetCode 34 在排序数组中查找元素的第一个和最后一个位置
链接:https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array 给定一个按照升序排列的整数数组 nums,和一个目标值 target。找出给定目标值在数组中的开始位置和结束位置。 ...
分类:编程语言   时间:2019-12-25 01:18:38    阅读次数:104
【leetcode】1291. Sequential Digits
题目如下: An integer has sequential digits if and only if each digit in the number is one more than the previous digit. Return a sorted list of all the in ...
分类:其他好文   时间:2019-12-23 10:27:41    阅读次数:71
Redis 有序集合(sorted set)
Redis 有序集合和集合一样也是string类型元素的集合,且不允许重复的成员。 不同的是每个元素都会关联一个double类型的分数。redis正是通过分数来为集合中的成员进行从小到大的排序。 有序集合的成员是唯一的,但分数(score)却可以重复。 集合是通过哈希表实现的,所以添加,删除,查找的 ...
分类:其他好文   时间:2019-12-22 18:19:02    阅读次数:56
《STL源码剖析》——第四章、序列容器
1、容器的概观与分类 所谓序列式容器,其中的元素都可序(ordered)【比如可以使用sort进行排序】,但未必有序(sorted)。C++语言本身提供了一个序列式容器array,STL另外再提供vector,list,deque,stack,queue,priority-queue 等等序列式容器 ...
分类:其他好文   时间:2019-12-22 12:53:43    阅读次数:93
1287. Element Appearing More Than 25% In Sorted Array
Given an integer array sorted in non-decreasing order, there is exactly one integer in the array that occurs more than 25% of the time. Return that in ...
分类:移动开发   时间:2019-12-22 10:37:01    阅读次数:99
5925条   上一页 1 ... 38 39 40 41 42 ... 593 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!