|
|
|
|
|
by jstimpfle
2784 days ago
|
|
You can implement most things with dynamically allocated vectors. Just use indices instead of pointers to link the elements. This can also bring advantage in space efficiency if you're able to do with 4 byte indices instead of 8 byte pointers. |
|