Minimal one-step distance set of vertices to all vertices

algorithmsgraph theory

I want to find minimal set of vertices such that every vertex in this graph either in this set or connected with some vertex from this set with one edge. Is there standard name for this algorithm? It seems to me that it somehow connected to minimal edge cover problem or maybe minimal vertex cover problem but I can't see how exactly they may be connected.

Best Answer

This set is called a dominating set and the respective algorithmic problem is NP-complete, see, for instance, Wikipedia.