Design an Iterator class, which has: A constructor that takes a string characters of sorted distinct lowercase English letters and a number combinatio ...
分类:
其他好文 时间:
2019-12-22 10:23:29
阅读次数:
99
原题链接在这里:https://leetcode.com/problems/check-if-a-number-is-majority-element-in-a-sorted-array/ 题目: Given an array nums sorted in non-decreasing order, ...
分类:
其他好文 时间:
2019-12-21 12:11:48
阅读次数:
73
Redis支持五种数据类型:string(字符串),hash(哈希),list(列表),set(集合)及zset(sorted set:有序集合)。 String(字符串) string 是 redis 最基本的类型,你可以理解成与 Memcached 一模一样的类型,一个 key 对应一个 val ...
分类:
其他好文 时间:
2019-12-20 22:31:00
阅读次数:
119
1 #include <stdio.h> 2 #include <string.h> 3 4 int main(void) 5 { 6 char str[5][80]; //二维数组保存5个字符串 7 int i, j; 8 9 for (i = 0; i < 5; i++) 10 { 11 sca ...
分类:
编程语言 时间:
2019-12-20 15:19:20
阅读次数:
79
原题链接在这里:https://leetcode.com/problems/squares-of-a-sorted-array/ 题目: Given an array of integers A sorted in non-decreasing order, return an array of t ...
分类:
其他好文 时间:
2019-12-18 11:01:21
阅读次数:
85
C# SortedDictionary SortedDictionary<string, string> dic = new SortedDictionary<string, string>(StringComparer.Ordinal); 定义的时候加上 StringComparer.Ordina ...
分类:
编程语言 时间:
2019-12-17 17:56:04
阅读次数:
114
一、定义 二、常用函数 stream的操作分为两类:中间操作和结束操作。 中间操作:就是流的中间状态,它是惰性操作,不立即执行,每次调用中间操作只是产生一个新的stream视图而已。 结束操作:流最后的执行结果。 常用的中间操作:filter(过滤),map(转换),sorted(排序),disti ...
分类:
编程语言 时间:
2019-12-17 00:35:55
阅读次数:
88
原题链接在这里:https://leetcode.com/problems/intersection-of-three-sorted-arrays/ 题目: Given three integer arrays arr1, arr2 and arr3 sorted in strictly incre ...
分类:
其他好文 时间:
2019-12-16 10:07:17
阅读次数:
101
最近刷题进展尚可,但是形式变化了下,因为感觉眼睛会看瞎,所以好多写在纸上。本来想放到文件夹存储起来,但是太容易丢了,明天整理下,赶紧拍上来把 今晚是周末,这一周都在不停的学学学,我想下周怕是不能睡午觉了,中午回去床对我的诱惑太大了,我得想办法,一进门先把被褥收起来,再放个欢快的歌,中午少吃点,加油小 ...
分类:
其他好文 时间:
2019-12-16 09:32:01
阅读次数:
87
s https://www.openlogic.com/blog/activemq-community-deprecates-leveldb-what-you-need-know 为什么ActiveMQ官方不再推荐使用LevelDB最近在学习mq,虽然已经在使用,但是却未深入的了解,于是阅读官方文档 ...
分类:
数据库 时间:
2019-12-15 16:12:14
阅读次数:
93