K-Graph Coloring: Difference between revisions

From Algorithm Wiki
Jump to navigation Jump to search
(Created page with "{{DISPLAYTITLE:k-Graph Coloring (Graph Coloring)}} == Description == Graph coloring is a special case of graph labeling; it is an assignment of labels traditionally called "colors" to elements of a graph subject to certain constraints. In this case, the number of colors we have is given as an input. == Related Problems == Subproblem: 2-Graph Coloring, 3-Graph Coloring, 4-Graph Coloring, 5-Graph Coloring, #k-Graph Coloring Related: Chromati...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 12: Line 12:
== Parameters ==  
== Parameters ==  


<pre>n: number of vertices
$n$: number of vertices
m: number of edges
k: number of colors given to color the graph</pre>


== Table of Algorithms ==
$m$: number of edges


{| class="wikitable sortable"  style="text-align:center;" width="100%"
$k$: number of colors given to color the graph


! Name !! Year !! Time !! Space !! Approximation Factor !! Model !! Reference
== Table of Algorithms ==
 
|-


| [[Karger, Blum ( Graph Coloring)|Karger, Blum]] || 1997 || $O(poly(V))$ ||  || $\tilde{O}(n^{3/14})$ || Deterministic || [http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.36.4204 Time]
Currently no algorithms in our database for the given problem.
|-
|}


== References/Citation ==  
== References/Citation ==  


https://ieeexplore-ieee-org.ezproxy.canberra.edu.au/stamp/stamp.jsp?arnumber=4031392
https://ieeexplore-ieee-org.ezproxy.canberra.edu.au/stamp/stamp.jsp?arnumber=4031392

Latest revision as of 08:53, 10 April 2023

Description

Graph coloring is a special case of graph labeling; it is an assignment of labels traditionally called "colors" to elements of a graph subject to certain constraints. In this case, the number of colors we have is given as an input.

Related Problems

Subproblem: 2-Graph Coloring, 3-Graph Coloring, 4-Graph Coloring, 5-Graph Coloring, #k-Graph Coloring

Related: Chromatic Number, 3-Graph Coloring, 4-Graph Coloring, 5-Graph Coloring, #k-Graph Coloring, #2-Graph Coloring, #3-Graph Coloring, #4-Graph Coloring, #5-Graph Coloring

Parameters

$n$: number of vertices

$m$: number of edges

$k$: number of colors given to color the graph

Table of Algorithms

Currently no algorithms in our database for the given problem.

References/Citation

https://ieeexplore-ieee-org.ezproxy.canberra.edu.au/stamp/stamp.jsp?arnumber=4031392