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

"Contributed in Data Structures: Added singular linked list 📌 #63

Merged
merged 5 commits into from
Oct 5, 2021
Merged

"Contributed in Data Structures: Added singular linked list 📌 #63

merged 5 commits into from
Oct 5, 2021

Conversation

ayeshatahirme
Copy link
Contributor

No description provided.

@@ -0,0 +1,216 @@
// CNODE PROGRAM "MAIN"
Copy link
Member

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
Copy link
Member

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
Copy link
Member

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.

@mursalfk mursalfk linked an issue Oct 5, 2021 that may be closed by this pull request
@mursalfk mursalfk merged commit 5bd1916 into MLSA-Mehran-UET:main Oct 5, 2021
@mursalfk mursalfk added hacktoberfest-accepted For Hacktoberfest related PRs hacktoberfest For Hacktoberfest related PRs labels Oct 5, 2021
@kiritocode1
Copy link

Nice

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
hacktoberfest For Hacktoberfest related PRs hacktoberfest-accepted For Hacktoberfest related PRs
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Logic Building Techniques
3 participants