1. Redis Redis 是一个开源(BSD许可)的,内存中的数据结构存储系统,它可以用作数据库、缓存和消息中间件。 它支持多种类型的数据结构,如 字符串(strings), 散列(hashes), 列表(lists), 集合(sets), 有序集合(sorted sets) 与范围查询, bi ...
分类:
系统相关 时间:
2020-07-27 15:55:04
阅读次数:
89
##题面 he length of the longest common prefix of two strings s=s1s2…sn and t=t1t2…tm is defined as the maximum integer k (0≤k≤min(n,m)) such that s1s2…s ...
分类:
其他好文 时间:
2020-07-26 00:15:56
阅读次数:
106
Redis 参考链接: Http://redis.io/ http://www.redis.cn/ 介绍 Remote Dictionary Server(远程字典服务器) 它可以用作数据库、缓存和消息中间件。 它支持多种类型的数据结构,如 字符串(strings), 散列(hashes), 列表( ...
分类:
其他好文 时间:
2020-07-22 02:17:22
阅读次数:
143
package main import ( "fmt" "strings" ) func main() { /* 示例 1: 输入: "the sky is blue" 输出: "blue is sky the" */ var s = "the sky is blue" fmt.Println(re ...
分类:
其他好文 时间:
2020-07-22 01:40:25
阅读次数:
66
package main import ( "fmt" "strings" ) func main() { /* 示例1: 输入: pattern = "abba", str = "dog cat cat dog" 输出: true 示例 2: 输入:pattern = "abba", str = ...
分类:
其他好文 时间:
2020-07-20 11:00:18
阅读次数:
73
http://poj.org/problem?id=2406 http://poj.org/problem?id=1961 几乎是一个题 1961是对于第 \(i\) 位,求 \([1,i]\) 能不能由一段字符循环一次以上组成,输出 \(i\) 和这样的长度最小的循环节循环次数 2406是只对第 ...
分类:
其他好文 时间:
2020-07-17 13:49:40
阅读次数:
47
常考 大数乘法 题目链接:https://leetcode-cn.com/problems/multiply-strings/ class Solution { public: string multiply(string num1, string num2) { string res(num1.s ...
分类:
编程语言 时间:
2020-07-16 12:20:14
阅读次数:
64
1:项目,右键-project-info-Localizations,里面选择自己要添加 的语言 2:新建InfoPlist.string文件,名字不能错,strings类型在sources里面 选中InfoPlist文件,右侧菜单栏,Localization里选择语言版本,打勾,最基本的开发语言e ...
分类:
移动开发 时间:
2020-07-14 11:52:02
阅读次数:
82
[C 语言中文开发手册isgraph (Strings) - C 中文开发手册在头文件中定义??int isgraph(int ch);??检查给定字符是否具有图形表示形式,即它是数字(0123456789),大写字母(ABCDEFGHIJKLMNOPQRSTUVWXYZ),小写字母(abcdefg... ...
分类:
其他好文 时间:
2020-07-13 21:54:46
阅读次数:
75
[C 语言中文开发手册wcschr (Strings) - C 中文开发手册在头文件中定义??wchar_t * wcschr(const wchar_t * str,wchar_t ch);?(自C95以来)ch在指向的宽字符串中查找宽字符的第一个匹配项str。参数str-指向要分析的以空字符结尾... ...
分类:
其他好文 时间:
2020-07-12 10:26:21
阅读次数:
91