码迷,mamicode.com
首页 >  
搜索关键字:scribe    ( 728个结果
剑指offer 面试题. 滑动窗口的最大值
题目描述 给定一个数组和滑动窗口的大小,找出所有滑动窗口里数值的最大值。例如,如果输入数组{2,3,4,2,6,2,5,1}及滑动窗口的大小3,那么一共存在6个滑动窗口,他们的最大值分别为{4,4,6,6,6,5}; 针对数组{2,3,4,2,6,2,5,1}的滑动窗口有以下6个: {[2,3,4] ...
分类:其他好文   时间:2020-02-14 20:49:24    阅读次数:55
SpringBoot 改用undertow 替换自带tomcat
个人测试发现undertow 和 tomcat 性能都差不多,但是内存占用会少一点(大概少了10%),尝试换上去测一下,没发现什么毛病,下面记录一下切换使用的要点。 1. 排除tomcat 依赖 <dependency> <groupId>org.springframework.boot</grou ...
分类:编程语言   时间:2020-02-14 18:43:52    阅读次数:128
Linux 高级I/O函数之sendfile
linux手册介绍sendfile函数: NAME sendfile - transfer data between file descriptors SYNOPSIS #include <sys/sendfile.h> ssize_t sendfile(int out_fd, int in_fd, ...
分类:系统相关   时间:2020-02-11 14:25:35    阅读次数:96
redis创建集群cluster模式
准备好压缩包 一、编译,解压编译过后,在src目录下执行 make install命令 二、在安装目录下创建一个cluster目录,以及7000 7001 7002端口,如果是多台创建的,就在多台上面创建对应的目录 三、把上面编译好的src目录下面的redis-server拷贝到cluster目录下 ...
分类:其他好文   时间:2020-02-08 15:47:58    阅读次数:82
【456】python string 类内容(去除文本标点)
主要用于 NLP 处理,里面存在一些常量列表,包括数字、字母、大写字母、小写字母、标点符号、空格等。 参考:6.1. string — Common string operations 可以用于删除文本中的标点符号,将标点符号 replace 为 空。 >>> import string >>> s ...
分类:编程语言   时间:2020-02-07 19:10:15    阅读次数:93
无法连接上 repo.windscribe.com:443 (8.7.198.45),连接超时
无法连接上 repo.windscribe.com:443 (8.7.198.45),连接超时 "请问这个是什么问题(不知道该怎么办诶)" "求教windscribe有没有其他源呢?谢谢~" ...
分类:Windows程序   时间:2020-02-07 00:59:55    阅读次数:309
对象/类
1. Objects&Class--对象&类 Object ? Objects have states and behaviors. An object is an instance of a class. Example: A dog has states - color, name, breed ...
分类:其他好文   时间:2020-02-02 23:47:07    阅读次数:100
PAT Advanced 1013 Battle Over Cities (25分)
It is vitally important to have all the cities connected by highways in a war. If a city is occupied by the enemy, all the highways from/toward that c ...
分类:其他好文   时间:2020-02-01 01:04:58    阅读次数:91
Educational Codeforces Round 80 C. Two Arrays(组合数快速取模)
You are given two integers nn and mm . Calculate the number of pairs of arrays (a,b)(a,b) such that: the length of both arrays is equal to mm ; each e ...
分类:其他好文   时间:2020-01-31 22:40:17    阅读次数:78
Educational Codeforces Round 81 (Rated for Div. 2) A Display The Number
A. Display The Number time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output You have a large el ...
分类:其他好文   时间:2020-01-30 14:33:31    阅读次数:86
728条   上一页 1 ... 8 9 10 11 12 ... 73 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!