"33. Search in Rotated Sorted Array" ...
分类:
其他好文 时间:
2020-04-04 11:28:53
阅读次数:
59
一、问题描述 sorted set操作执行:print(connect.zadd('grade', 'bob', 98, 'mike' ,100))时报错redis.exceptions.DataError: ZADD allows either 'nx' or 'xx', not both 二、出 ...
分类:
编程语言 时间:
2020-04-04 11:27:13
阅读次数:
94
leeetcode 33. Search in Rotated Sorted Array leetcode 81 leetcode 153. Find Minimum in Rotated Sorted Array 这几道的相似处是:都是部分有序的数组,可以用二分搜索来做。最重要的是判断到底是左区间 ...
分类:
其他好文 时间:
2020-04-04 09:16:41
阅读次数:
75
https://leetcode.com/problems/search-in-rotated-sorted-array/ 解法一:本来有序的数组经过rotate后,分成了两部分。以最大值为分割点。通过二分搜索找最大值。然后在[0 , maxi] , 和[maxi + 1 , nums.size() ...
分类:
其他好文 时间:
2020-04-04 00:17:58
阅读次数:
61
According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and growing a sorted output list. Each iteration, insert ...
分类:
其他好文 时间:
2020-04-03 13:46:45
阅读次数:
70
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solu ...
分类:
其他好文 时间:
2020-04-01 16:35:39
阅读次数:
55
列表定义:test = ["sss","ccc","bbb"]格式:[]中用,隔开的元素集合叫做列表访问列表:test[0]列表名称[元素索引位置],索引从0开始算,[-1]代表倒数第一个 索引的添加、修改、删除:修改元素:test[0]="ooo" 修改第一个元素添加元素:test.append( ...
分类:
其他好文 时间:
2020-03-31 14:26:40
阅读次数:
62
package LeetCode_1064 /** * 1064. Fixed Point * Lock by LeetCode * Given an array A of distinct integers sorted in ascending order, return the smalles ...
分类:
其他好文 时间:
2020-03-31 14:06:29
阅读次数:
69
转自 一、函数sort() sort() :仅对list对象进行排序,会改变list自身的顺序,没有返回值,即原地排序; list.sort(key=None, reverse=False) key :设置排序方法,或指定list中用于排序的元素; reverse :升降序排列,默认为升序排列; 一 ...
分类:
编程语言 时间:
2020-03-30 21:33:52
阅读次数:
92
Problem : Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element ...
分类:
其他好文 时间:
2020-03-30 16:41:09
阅读次数:
69