Hi all! I need help understanding what my teacher expects from this project.
Here is the link to the instructions for the project: http://cs.ecu.edu/~karl/2530/spr18/Assn/Assn5/assn5.html
I wrote a little bit of code but i am stuck and dont know how to move forward
This is as far as ive gotten with the first function:
void insertEdge(int u,int v,int w,int *g)
{
bool nullCheck = false
for (int i = 0; i <= maxEdges; i++)
{
if (g[i] == ' ')
{
nullCheck = true;
}
}
if (nullCheck)
{
g[0] = u;
}
}
Also im not looking for yall to write my code for me i just want to understand how to approch this project.