下载https://github.com/zsummer/zsummerX下载http://ftp.gnu.org/gnu/glibc/../configure --prefix=/home/summer/dependlibs/glibc_static/ --enable-shared=no --d...
分类:
其他好文 时间:
2015-06-24 16:14:09
阅读次数:
115
in prep.1. [表示地点、场所、位置等]在…里面;在…内部;在…上:例句: in the room 在房间里2. [表示时间]在…期间;在(一段时间)以内;过…之久:例句: in summer 在夏天in 3. [表示状态]在…状态中:例句:in progress在进行中4. [表示某抽象....
分类:
其他好文 时间:
2015-06-24 10:44:36
阅读次数:
148
It's hot this summer. It also reminds me of one case about sunglasses. She was new to this company and she had a good body figure. She was very popula...
分类:
其他好文 时间:
2015-06-21 23:42:09
阅读次数:
175
1、Hive安装 http://blog.csdn.net/an342647823/article/details/46048403 2、Hadoop安装 http://www.itnose.net/detail/6182168.html 3、Spark安装 http://stark-summer.iteye.com/blog/2173219 http://ju.outof...
分类:
其他好文 时间:
2015-06-16 23:10:06
阅读次数:
280
Watashi's BGTime Limit:3 Seconds Memory Limit:65536 KBWatashi is the couch of ZJU-ICPC Team and he is very kind hearted. In ZJU-ICPC summer training c...
分类:
其他好文 时间:
2015-05-27 09:56:00
阅读次数:
159
Hi ,Hope all is well. Summer is right around the corner, and the Khan Academy team is excited to spend the next few months growing our library of cont...
分类:
其他好文 时间:
2015-05-26 12:20:50
阅读次数:
142
枚举是c语言中得一种基本数据类型,不是数据结构用于声明一组常数1. 3中枚举变量的方式a. 先定义类型, 再定义变量b. 同时定义类型和变量c. 匿名定义enum Season {Spring, Summer, Autumn, Winter};enum Season s = Spring;已经定位为...
分类:
编程语言 时间:
2015-05-13 19:33:26
阅读次数:
130
DescriptionKolya has returned from a summer camp and now he's a realcommunication fiend. He spends all his free time on the Web chatting with his frie...
分类:
其他好文 时间:
2015-05-12 13:32:43
阅读次数:
101
Java1.5提供了关键字enum,能够通过该关键字方便得定义自己须要的枚举类型,比方enumSeason{SPRING,SUMMER,AUTUMN,WINTER}就定义了一个季节枚举类型。在本例中,对于Season.SPRING这个对象,Season.SPRING.name()能够得到该对象的字符...
分类:
编程语言 时间:
2015-05-11 20:02:08
阅读次数:
159
分析:首先求强连通分量的个数,然后进行缩点,最后求出最终答案。
1、求强连通分量的个数使用tarjan算法。
2、缩点为另外一个图,通过tarjan算法求出的结果进行。缩点后的图中求出每个点的入度。
3、求出每个强连通分量中的最小花费。
4、根据缩点后图的入度求出最终结果。
#include
#include
#include
using namespace std;
vect...
分类:
编程语言 时间:
2015-04-25 15:12:01
阅读次数:
182