码迷,mamicode.com
首页 >  
搜索关键字:smart scan    ( 9037个结果
Rx 操作符五
sample 不定期的对 Observable 取样 sample 操作符将不定期的对源 Observable 进行取样操作。通过第二个 Observable 来控制取样时机。一旦第二个 Observable 发出一个元素,就从源 Observable 中取出最后产生的元素。 scan 持续的将 O ...
分类:其他好文   时间:2020-04-12 07:50:09    阅读次数:71
Redis Cluster 集群数据分片机制
复制粘贴自: https://www.e-learn.cn/content/redis/2344485, 点击链接访问原文 仅供个人学习参考之用, 高级开发不得不懂的Redis Cluster数据分片机制 Redis 集群简介 Redis Cluster 是 Redis 的分布式解决方案,在 3.0 ...
分类:其他好文   时间:2020-04-11 22:14:27    阅读次数:77
Codeforces Round #565 (Div. 3)
传送门 1 #include <bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 int main() { 5 int q; cin >> q; 6 while (q--) { 7 ll n; cin >> n; 8 ll ...
分类:其他好文   时间:2020-04-11 20:55:59    阅读次数:69
CTF_show平台 web题解 part3
web13 题目显示文件上传,各类型上传均提示错误,在使用ctf scan扫描的时候,发现 。 查看源码: 阅读源码,上传限制: 1. 文件大小小于等于24 2. 文件名长度小于等于9 3. 后缀长度小于等于3 4. 文件名和后缀名均不能存在php 可以将` 903c00105c0141fd37ff ...
分类:Web程序   时间:2020-04-11 00:31:55    阅读次数:154
scanf正则表达式部分总结
正则表达式 scanf() 函数的正则用法: scanf("%[^\n]",str) 其中的 \n 表示保存的字符串以换行符为截止,并且不存储该换行符号,这句话的作用是允许该函数读入除换行符以外的空白符(空格,table),平时输入时,scanf()不能像gets()一样读入空格等空白符; scan ...
分类:其他好文   时间:2020-04-10 09:14:21    阅读次数:109
HDoj 2051 Bitset
Problem Description Give you a number on base ten,you should output it on base two.(0 < n < 1000) Input For each case there is a postive number n on b ...
分类:其他好文   时间:2020-04-10 00:29:53    阅读次数:80
1001 A+B Format
1001 A+B Format (20分) Calculate a+b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unl ...
分类:其他好文   时间:2020-04-09 16:44:40    阅读次数:77
第四次上机练习
1.编写一个简单程序,要求数组长度为5,静态赋值10,20,30,40,50,在控制台输出该数组的值。 package xz5; public class tear { public static void main(String[] args) { // TODO Auto-generated m ...
分类:其他好文   时间:2020-04-09 12:18:48    阅读次数:61
Java 基础编程练习(判断是否是质数)
1.判断用户输入的数是否是质数(质数是指只能被1和自身整除的正整数)。 import java.util.Scanner;public class PrimeNumber { public boolean Oprimenumber(int A){ int a = A; if(a<0) return ...
分类:编程语言   时间:2020-04-09 10:59:26    阅读次数:99
2019-2020 ACM-ICPC Latin American Regional Programming Contest L - Leverage MDT
``` #include #include #include #include #include #include using namespace std; #define LL long long const int N=1010; int val[N][N]; int res[N][N]; ch... ...
分类:其他好文   时间:2020-04-09 10:34:36    阅读次数:114
9037条   上一页 1 ... 56 57 58 59 60 ... 904 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!