Posts by Matheus Albano • 11 points
2 posts
-
1
votes1
answer61
viewsQ: List
I need to create a road map, where each path points to another and so on. I’m using pointer pointer to a list, so I can build something similar to an adjacency list, but at the time of entering the…
-
0
votes1
answer127
viewsQ: Number of elements allocated from a pointer
I need to know how many elements are allocated in my pointer pointer. For example with vector, sizeof(v)/sizeof(v[0]) this way I get the number of elements that this vector has. I would like to do…