X Tutup
The Wayback Machine - https://web.archive.org/web/20200609214142/https://github.com/TheAlgorithms/C-Plus-Plus/pull/752
Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Bellman-Ford #752

Open
wants to merge 1 commit into
base: master
from
Open

Update Bellman-Ford #752

wants to merge 1 commit into from

Conversation

@shasha9
Copy link

shasha9 commented May 16, 2020

Description of Change

Added comments in Bellman-Ford.cpp

Checklist

  • Relevant documentation/comments is changed or added

Notes:

@shasha9 shasha9 changed the title Update Bellman-Ford.cpp Update Bellman-Ford May 16, 2020
@@ -22,7 +22,7 @@ class Graph
{
this->vertexNum = V;
this->edgeNum = E;
this->edges = (Edge *)malloc(E * sizeof(Edge));
this->edges = (Edge *)malloc(E * sizeof(Edge)); //allocate a block of uninitialised memory

This comment has been minimized.

Copy link
@deadshotsb

deadshotsb May 16, 2020

Member

Code Documentation

This comment has been minimized.

Copy link
@deadshotsb

deadshotsb May 16, 2020

Member

You may consider looking to the compilation log of failed cases and changing the Documentation of the Code

This comment has been minimized.

Copy link
@cclauss

cclauss May 17, 2020

Member

cpplint_modified_files is failing below.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked issues

Successfully merging this pull request may close these issues.

None yet

4 participants
You can’t perform that action at this time.
X Tutup