大力大侠

文章
6
资源
0
加入时间
2年10月18天

使用FileStream读写文件

static void Main(string[] args)        {            //创建文件            using (FileStream fsWrite = new FileStream(@"C:\Users\pqx\Desktop\new.txt", FileMode.OpenOrCreate, FileAccess.Write))     

Java常见的集合类汇总关系图

Java常见的集合关系图MapHashMapConcurrentHashMapLinkedHashMapTreeMapHashTableWeakHashMapIdentityHashMapEnumMapCollectionListArrayListLinkedListVectorCopyOnWriteListSetHashSetLinkedHashSetTreeSetConcurrentSkipListSetCopyOnWriteArraySetQueueLinkedListArrayDueue

牛客小白月赛——G题

题目描述链接:https://ac.nowcoder.com/acm/contest/392/G月月给了华华一个类似斐波那契数列的东西,这个数列满足:F1=A,F2=B,Fi=Fi−1+Fi−2(i>2)F1=A,F2=B,Fi=Fi−1+Fi−2(i>2)月月希望华华求出gcd(FN,FN+1)gcd(FN,FN+1)。月月认为,求这个东西需要很长的时间,所以华华就没有机会去和...

「PKUSC2018」星际穿越(倍增)

倍增好题啊!我们我们预处理 \(f[x][i]\) 表示 \(x\) 点最左到达的端点,\(sum[x][i]\) 表示 \(x\) 点最左到达的端点时 \(f[x][i]\sim x\) 的答案,然后倍增的时候记录一个 \(tot\) 转移即可\(Code\ Below:\)#include <bits/stdc++.h>using namespace std;const ...