I found this pseudocode in a textbook but I do not properly understand it, and it was poorly explained.
Algorithm 8: Greedy Vertex Cover Algorithm Example(G=(V,E))
1) C := ;.
2) while (E 6= ;)
• Select a node v of maximal degree in G.
• C := C [{v}.
• Remove all edges e from E that are covered by v,
i.e. for which e\v 6= ; holds.
3) Return C.
The algorithm is a greedy algorithm to solve the Vertex Cover problem. Does anyone recognize it and know it's name? I would like to learn more about it.