Skip to content

yelite/p3-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build

Compile and test

./gradlew build

Compile only

./gradlew assemble

Test

./gradlew test

For those who uses Windows, you should run gradlew.bat with the same parameters.

Both IDEA and Eclipse have plugin for Gradle.

Input/Output Format

You don't need to implement main method this time. Input is directly fed to the constructor of PageRank. For example,

new PageRank(5, {1,2,3}, {0,0,0})

means the graph has five vertices, 0, 1, 2, 3, 4, and three directed edges, 1->0, 2->0, 3->0.

The output should be printed to System.out, by the order of vertex index. If vertex 0 has pagerank 0.5, and others have 0.125, the output should be

0.5
0.125
0.125
0.125
0.125

It should not print any other things to System.out after the result is printed, which means the last size nonempty lines should be the output of your program.

Requirements

  • With multiple runs, your program should have stable output in stable runtime.
  • You should not use Thread.sleep as a workaround for synchronization issue.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages