ICode9

精准搜索请尝试: 精确搜索
  • 11.20号2020-11-28 09:31:53

    Java 字符串的StringBuffer类型:处理频繁改变的字符串变量 如果频繁改变字符串变量,它会新开劈空间,再扔掉原本的空间,非常的浪费,和占用加载时间,但是StringBuffer不会,它会一直在一个空间里 //1.声明赋值的格式 StringBuffer con=new StringBuffer(“内容”); 试验: public class d

  • 【科研狗看论文】第三周(11.13-11.20)关于bloom filter2020-11-23 19:32:04

    【第一篇】Adaptive learned Bloom Filters under Incremental Workloads ABSTRACT The recently proposed paradigm of learned Bloom flters (LBF) seems to offer signifcant advantages over traditional Bloom flters in terms of low memory footprint and overall perf

  • 2020-11-232020-11-23 14:01:23

    2020年初雪 虬枝绒雪覆,曲径向南天。 琼玉山中挂,游芳不畏寒。 2020年11.20·吉林龙潭山

  • Day 11.20模拟赛游记2020-11-21 08:35:12

    又是爆零的一天! 没写出的题就写写知识点吧: T1:线段树合并 T3:kruskal重构树 T4:FFT T2 题目大意:一棵树,对于每一个\(i\),求有多少个\(j\)为\(i\)的联系节点,\(j\)满足\(\forall k(j<k\le i)\)都是\(j\)的子孙节点。 题目挺简单,但考场上完全想错方向,对于\(j\)的右边最多可以

  • 11.20 考试总结2020-11-21 08:34:06

    T1 打表找规律发现当2的n次方-1时f(n)=n; #include<iostream> #include<cstdio> #define ull unsigned long long using namespace std; const int N=1e7+7; ull l,r,ans; ull b[100]; int main(){ freopen("dynamic.in","r",stdin); freopen("dyn

  • 11.20 考试2020-11-21 08:31:38

    T1 设f[i][j]表示最大值为i,最左端为j的左右端数字的位置,若无法合成则为0; 可以发现f[i][j]=f[i-1][f[i-1][j]];就ok了 #include<iostream> #include<cstdio> using namespace std; const int N=(1<<18)+7; int n,ans; int f[60][N],a[N]; int main(){ scanf("%d",&n); for(

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有