1 #include <bits/stdc++.h> 2 #define dbg(x) cout << #x << "=" << x << endl 3 #define eps 1e-8 4 #define pi acos(-1.0) 5 6 using namespace std; 7 typed ...
分类:
其他好文 时间:
2020-03-10 01:12:16
阅读次数:
52
RDPWrapper-v1.6.2和autoupdate补丁 Win10家庭版远程桌面服务1903 1909 ...
分类:
移动开发 时间:
2020-03-09 13:35:12
阅读次数:
538
What are Peng (Bob) Chi's top 3 strengths? Can you give an example of how one or two of those strengths has impacted you or the business? What are the ...
分类:
其他好文 时间:
2020-03-09 01:41:29
阅读次数:
66
进程,线程,协程 TODO 虚拟内存 局部性原理 计算机组成原理,CPU缓存和局部性原理 老调度器(Go 1.0)有4个缺点 https://golang.org/s/go11sched http://lessisbetter.site/2019/03/10/golang scheduler 1 h ...
分类:
其他好文 时间:
2020-03-08 15:44:43
阅读次数:
81
1.从other project 入口创建2.默认选择Catalogs时一般用一下两个3.新建工程名4.创建工程失败的解决方法1.检查JDK配置是否正确2.检查Maven仓库配置是否正确【Maven 版本】【本地仓库位置】【中央仓库位置】参考信息:https://blog.csdn.net/Jing... ...
分类:
其他好文 时间:
2020-03-08 14:14:35
阅读次数:
60
webpack多入口打包 额,这次就先记录到这里,以上内容仅代表个人看法,有问题的地方还请指出!! 今天是3月8号,祝所有的母亲大人节日快乐?????? ...
分类:
Web程序 时间:
2020-03-08 14:12:24
阅读次数:
80
Redis资料收集 1、Redis中文官网 http://www.redis.cn/ 2、Redis中文网 https://www.redis.net.cn/ 3、Redis安装教程 https://www.runoob.com/redis/redis-install.html 4、Redis GU ...
分类:
其他好文 时间:
2020-03-06 01:00:29
阅读次数:
51
String: 一、定义 1.字符串,声明为final的,不可被继。 2.实现了Serializable接口:表示字符串是支持序列化的。 实现了Comparable接口:表示String可以比较大小 二、特性 1.String的不可变性 1.当对字符串重新赋值时,需要重写指定内存区域赋值,不能使用原 ...
分类:
编程语言 时间:
2020-03-05 01:28:37
阅读次数:
93
题目链接:数组中重复的数字 题意:在一个长度为n的数组里的所有数字都在0到n-1的范围内。 数组中某些数字是重复的,但不知道有几个数字是重复的。也不知道每个数字重复几次。请找出数组中任意一个重复的数字。 例如,如果输入长度为7的数组{2,3,1,0,2,5,3},那么对应的输出是第一个重复的数字2。 ...
分类:
编程语言 时间:
2020-03-05 01:20:45
阅读次数:
99
Point类,具有改变x,y,z坐标,计算该点到原点距离,计算该点到其他点的距离的方法。(全是int型) public class Point { private int x; private int y; private int z; public Point(int _x,int _y,int ...
分类:
编程语言 时间:
2020-03-04 22:37:18
阅读次数:
74