-
Notifications
You must be signed in to change notification settings - Fork 50
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
"Contributed in Data Structures: Added singular linked list 📌 #63
Conversation
@@ -0,0 +1,216 @@ | |||
// CNODE PROGRAM "MAIN" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a good one code. Very well-documented too.
class Node | ||
{ | ||
int value; | ||
Node *nextnode; // POINTER OF SAME CLASS TYPE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if possible, please do start commenting with how this particular block of code would affect the overall execution of the code.
// PRINTING THE LIST | ||
myLinkList.display(); | ||
cout << endl; | ||
// PRINTING THE SIZE OF LIST |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if possible, please do start commenting with how this particular block of code would affect the overall execution of the code.
Nice |
No description provided.