I'm looking to implement a constant, unordered, unweighted, sparse graph (ie. edges do not move). However, I will be doing lots of vertex swap operations, whereby the ordering of the vertices change.
Eg, one way is to use a vector of unordered_sets + the adjacency list structure:
0: 1 2 3
1: 0 2
2: 0 1
3: 0
swap 0 and 3:
0: 3
1: 3 2
2: 3 1
3: 1 2 0
What is the best implementation in C++?