摘要:
GENIA语料库:http://www.nactem.ac.uk/genia/genia-corpusGENIA corpus The GENIA corpus is the primary collection of biomedical literature compiled and annotated within the scope of the GENIA project. The corpus was created to support the development and evaluation of information extraction and text mining 阅读全文
摘要:
Host page: http://www.nactem.ac.uk/genia/Home 主页Welcome to the new homepage of the GENIA Project!欢迎来到GENIA项目的新主页。The GENIA Project was founded by prof. Jun'ichi Tsujii and ran at the Tsujii Laboratory of University of Tokyo from 1998 to 2012. A full list of project members and support can be fou 阅读全文
摘要:
之前一直觉得Prim和Dijkstra很相似,但是没有仔细对比;今天看了下,主要有以下几点:1:Prim是计算最小生成树的算法,比如为N个村庄修路,怎么修花销最少。Dijkstra是计算最短路径的算法,比如从a村庄走到其他任意村庄的距离。2:Prim算法中有一个统计总len的变量,每次都要把到下一点的距离加到len中;Dijkstra算法中却没有,只需要把到下一点的距离加到cls数组中即可;3:Prim算法的更新操作更新的cls是已访问集合到未访问集合中各点的距离;23 for (j=0;j<n;j++)24 {25 if (!visited[j] && map[j][n 阅读全文
摘要:
Problem : 2095 ( find your present (2) ) Judge Status : AcceptedRunId : 6068462Language : G++Author : qq1203456195Code Render Status : Rendered By HDOJ G++ Code Render Version 0.01 Beta#include <stdio.h>int main(){ int n,r,t; while (scanf("%d",&n),n) { r=0; while (n--) ... 阅读全文