码迷,mamicode.com
首页 >  
搜索关键字:another    ( 2305个结果
【Golang基础】defer执行顺序
defer 执行顺序类似栈的先入后出原则(FILO) 一个defer引发的小坑:打开文件,读取内容,删除文件 // 原始问题代码 func testFun(){ // 打开文件 file, err := os.Open(path) defer file.Close() // do something ...
分类:其他好文   时间:2019-12-22 12:50:28    阅读次数:146
Yet Another Broken Keyboard
time limit per test2 secondsmemory limit per test256 megabytesinput: standard inputoutput: standard output Recently, Norge found a string s=s1s2…sn co ...
分类:其他好文   时间:2019-12-21 00:15:46    阅读次数:68
codeforces605
A. Three Friends #include<bits/stdc++.h> #define rep(i, n) for(int i=0;i!=n;++i) #define per(i, n) for(int i=n-1;i>=0;--i) #define Rep(i, sta, n) for( ...
分类:其他好文   时间:2019-12-19 19:07:18    阅读次数:54
Socket与系统调用深度分析
本次实验要求: 请将Socket API编程接口、系统调用机制及内核中系统调用相关源代码、 socket相关系统调用的内核处理函数结合起来分析,并在X86 64环境下Linux5.0以上的内核中进一步跟踪验证。 Socket API编程接口: C语言中的Socket API就是一种涉及系统调用的AP ...
分类:其他好文   时间:2019-12-19 18:56:56    阅读次数:73
Tunning spark
Data Serialization 对spark程序来说,可能会产生的瓶颈包括:cpu,网络带宽,内存 在任何分布式应用中数据序列化都非常重要,数据序列化带来的作用是什么?第一减少内存占用,第二减小网络传输带宽消耗。spark提供了两种序列化方式: 1.Java serialization 默认情 ...
分类:其他好文   时间:2019-12-17 15:01:16    阅读次数:86
Spark-Core RDD转换算子-双Value型交互
1、union(otherDataSet) 作用 : . 对源 RDD 和参数 RDD 求并集后返回一个新的 RDD 2、subtract(otherDataSet) 作用: 从原 RDD 中减去 原 RDD 和otherDataset 中的共同的部分. 3、intersection(otherDa ...
分类:其他好文   时间:2019-12-15 20:02:10    阅读次数:81
Codeforces Round #605 (Div. 3)
地址:http://codeforces.com/contest/1272 A. Three Friends 仔细读题能够发现|a-b| + |a-c| + |b-c| = |R-L|*2 (其中L = min{a, b, c}, R = max{a, b, c}) 那么本题的移动条件就只考虑两个端 ...
分类:其他好文   时间:2019-12-15 18:55:16    阅读次数:117
【leetcode】1288. Remove Covered Intervals
题目如下: Given a list of intervals, remove all intervals that are covered by another interval in the list. Interval [a,b) is covered by interval [c,d) if ...
分类:其他好文   时间:2019-12-15 10:35:43    阅读次数:98
non-volatile and volatile long and double
来源:statckoverflow Not sure if I understand your question correctly, but the JLS 8.3.1.4. volatile Fields states: A field may be declared volatile, in ...
分类:其他好文   时间:2019-12-13 15:29:21    阅读次数:105
CSP2019复赛游记
CSP-S2019参加时的状态(提供前车之鉴),以及当时的做法(如何以刚好过线的水平平稳地骗到刚好过线的分数),主要自己开心(大雾)。 ...
分类:其他好文   时间:2019-12-10 22:39:18    阅读次数:159
2305条   上一页 1 ... 19 20 21 22 23 ... 231 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!