Posts by Avoid • 25 points
2 posts
-
0
votes1
answer122
viewsQ: Error passing an object array in C++
I have the following function: int verticeEstimativaMinima(Node *grafo, int numVertices){} And in my job main, I have the following line of code: Node *grafo = new Node[numVertices]; I mean,…
-
2
votes1
answer668
viewsQ: Automatic input generator
I am developing Dijkstra’s minimum path calculation algorithm using the C language, I am doing several solutions to the same problem and then testing which is the most efficient. For this I needed…