SVN的基本操作本文地址: http://blog.csdn.net/caroline_wendy$ svn diff //显示改动$ post-review --summary="bug fix” //发送Review$ post-review -r 100 --summary=这次改动的内容 / ...
分类:
系统相关 时间:
2017-07-26 19:31:29
阅读次数:
185
Balala Power! Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 3555 Accepted Submission(s): 844 ...
分类:
其他好文 时间:
2017-07-26 17:50:51
阅读次数:
227
三个区的概念: working tree指工作区 index指暂存区 HEAD指最近的版本库,即最近一次commit之后的版本 diff 操作 git diff:是查看working tree与index file的差别的。 git diff --cached:是查看index file与commi ...
分类:
其他好文 时间:
2017-07-26 17:49:26
阅读次数:
145
Description Christmas is coming to KCM city. Suby the loyal civilian in KCM city is preparing a big neat Christmas tree. The simple structure of the t ...
分类:
其他好文 时间:
2017-07-26 10:43:30
阅读次数:
198
代码: class Solution { public: int threeSumClosest(vector<int>& nums, int target) { int closest = nums[0] + nums[1] + nums[2]; int diff = abs(closest - ...
分类:
其他好文 时间:
2017-07-25 19:33:31
阅读次数:
115
时间复杂度是检测一个算法或者一个性能好坏的重要因数。 其他它没有什么神奇的,只是一个名词而已。 O(n^3) -> O(n^2) -> O(n) 从左到右,时间复杂度越来越小,越小性能越好。 react将diff算法从O(n^3) 直接变为 O(n), 大大提高了性能。 参考: http://www ...
分类:
编程语言 时间:
2017-07-25 16:03:51
阅读次数:
299
Prefix Time Limit: 2000/4000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 858 Accepted Submission(s): 256 Problem D ...
分类:
其他好文 时间:
2017-07-24 14:50:49
阅读次数:
148
Highways Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 2730 Accepted: 1008 Special Judge Description In a distant country Lineland there ...
分类:
其他好文 时间:
2017-07-24 13:12:11
阅读次数:
188
TLS1.3是一种新的加密协议,它既能提高各地互联网用户的访问速度,又能增强安全性。 我们在访问许多网页的时候,常常会在浏览器的地址栏上看到一个锁的图标,并使用“https”代替传统的“http”。这里的“s”代表着安全。当你连接到一个HTTPS站点时,你和该站点之间的通信会被加密,这会显著提高浏览 ...
分类:
其他好文 时间:
2017-07-24 11:38:24
阅读次数:
210
Molly Hooper has n different kinds of chemicals arranged in a line. Each of the chemicals has an affection value, The i-th of them has affection value ...
分类:
其他好文 时间:
2017-07-23 10:16:10
阅读次数:
216