合适灯泡

文章
4
资源
0
加入时间
3年0月21天

并查集poj1611The Suspects

#includeusing namespace std;const int MAX=30010;int pre[MAX];void init(int n){ for(int i=0;i<n;i++) pre[i]=i;}int find(int x){ if(pre[x]==x) return x; return pre[x]=find(pre[x]);}void unit

java interface 注解,JAVA元注解@interface详解

jdk1.5起开始提供了4个元注解,用来定义自定义注解的注解,它们分别是:@Target指定注解使用的目标范围(类、方法、字段等),其参考值见类的定义:java.lang.annotation.ElementType@Documented指定被标注的注解会包含在javadoc中。@Retention指定注解的生命周期(源码、class文件、运行时),其参考值见类的定义:java.lang.ann...