1.GPA>4.00. 2.CET 4 SCORES>560. 3.REACH A VOCABULARY OF MORE THAN 20000 WORDS. 4.MAKE A PROGRESS IN COMPUTER SCIENCE. 5.READ AT LEAST 20 BOOKS A YEAR. ...
分类:
其他好文 时间:
2017-10-04 15:14:04
阅读次数:
214
How to Make a Chrome Extension. https://robots.thoughtbot.com/how-to-make-a-chrome-extension Skip to main content All Topics Design Web iOS Android Ho ...
分类:
其他好文 时间:
2017-10-04 14:21:44
阅读次数:
240
地址:https://nanti.jisuanke.com/t/17314 题目: Three circles C_{a}C?a??, C_{b}C?b??, and C_{c}C?c??, all with radius RR and tangent to each other, are loca ...
分类:
其他好文 时间:
2017-10-04 00:19:05
阅读次数:
309
RuntimeError: Compression requires the (missing) zlib module 缺少zlib包 解决方案 yum install zlib yum install zlib-devel 安装完成后,重新编译安装python #make make instal ...
分类:
系统相关 时间:
2017-10-03 20:10:36
阅读次数:
219
因为二叉堆满足完全二叉树,一颗高为h的完全二叉树有2^h到2^h-1个节点,那么就可以用数组来表示。public class HeapDemo>{ public HeapDemo(){ this(DEFAULT_CAPACITY); } public HeapDemo(int capacity){ ... ...
分类:
其他好文 时间:
2017-10-03 18:13:09
阅读次数:
142
1. item2官网下载,自行安装 2. 导入以前生成的Prefiles文件到 /Users/alex/Library/Application Support/iTerm2/DynamicProfiles 3. 导出Perfiles Json文件 4. 配置标题显示 Iterm2->Preferen ...
分类:
系统相关 时间:
2017-10-03 09:28:16
阅读次数:
322
题目链接:挑战书上的例题 题意:w*h的长方形上画了n条宽度为1的直线,求这些直线将长方形划分为多少个区域 题解:显然用DFS填水坑的方法做,但是w,h过大,无法开这么大的数组,所以这里用到了一个坐标离散化的方法 对于这个方法,我的理解就是删掉一些没用的区域(不会对结果产生影响)。手撸了一遍书上的代 ...
分类:
其他好文 时间:
2017-10-02 21:28:09
阅读次数:
206
emm,a出3题,补了两题 A,B水题 #include<bits/stdc++.h> #define fi first #define se second #define mp make_pair #define pb push_back #define read(a) scanf("%d",&a ...
分类:
其他好文 时间:
2017-10-02 20:53:35
阅读次数:
249
#include <cstdio> #include <cstring> #include <vector> using namespace std; int main(){ int a[210000],flag[210000],lag[210000],n; vector<int> vec; mem ...
分类:
其他好文 时间:
2017-10-02 20:52:58
阅读次数:
163
^ : 字符串的开始, $: 字符串的末尾 . : 匹配任意字符,除换行符 * : 任意多的字符 +: 任意大于1 的字符 ?: 匹配0或1个, home-?brew : homebrew, 或home-brew []: 指定一个字符类别,可以单独列出,也可以使用- 表示一个区间。[abc]匹配a, ...
分类:
编程语言 时间:
2017-10-02 17:51:41
阅读次数:
230