xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

資源簡(jiǎn)介

清華大學(xué)搜索引擎pagerank作業(yè),純C++實(shí)現(xiàn),代碼簡(jiǎn)潔明了,具有很大的參考價(jià)值

資源截圖

代碼片段和文件信息

#include?
#include?
#include?“float.h“
#include?
#include?
#include?
#include?
#include?
#include?
#include?

#define?alpha?0.10
#define?TN?25

using?namespace?std;


int?N;
int?num?=0;

struct?Node
{
int?number;
int?inDegree;
int?outDegree;
double?pagerank;
};

struct?Edge
{
int?start;
vector?ends;
};

vector?nodes;
vector?name;
vector?Edges;
vector?I;
vector?vaildNodes;
double?S?=?0;

void?readfile()
{
FILE*?file;
if(!(file?=?fopen(“wiki.graph““r“)))//設(shè)定為只讀?
return;
char?buffer[100000]?=?{0};
while(fgets(buffer100000file))
{
char*?p?=?strtok(buffer??“:“);
int?id?=?atoi(p);????
nodes[id].n

評(píng)論

共有 條評(píng)論