Skip to content

kimbsu00/GraphColoring

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GraphColoring

Graph Coloring Algorithm in Multi-Thread environment.


Input File Format

c [information about input file as File Description, File Source etc]
p edge [Node#] [Edge#]
e [Node index] [Node index]
  • # means the number.
  • Node index is an integer and is in range [0, Node#-1].
  • It doesn't matter which directory the input file is in. This is because this program receives the absolute path of the input file.

Here is the sample input file.


Output File Format

Color of the 0th node
Color of the 1st node
Color of the 2nd node
.
.
Color of the (N-2)th node
Color of the (N-1)th node
used color num : [Total used color#]
  • # means the number.
  • N means Node# in graph.
  • The output file is saved in ..\\GraphColoring\\GraphColoring\\GraphColoring\\data\\output\\.

Here is the sample output file.


Explanation

youtube_logo

About

그래프 색칠하기 병렬 알고리즘

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages