The Wayback Machine - https://web.archive.org/web/20201016025007/https://github.com/aalhour/C-Sharp-Algorithms/issues/148
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

SLinkedList bug #148

Open
gang89liu opened this issue Aug 21, 2020 · 2 comments
Open

SLinkedList bug #148

gang89liu opened this issue Aug 21, 2020 · 2 comments

Comments

@gang89liu
Copy link

@gang89liu gang89liu commented Aug 21, 2020

when code write is
var s = new SLinkedList();
foreach (var item in s)
{
Console.WriteLine(item);
}

function MoveNext _current is null

public bool MoveNext()
{
_current = _current.Next;

 return (this._current != null);

}

@github-actions
Copy link

@github-actions github-actions bot commented Aug 21, 2020

Thanks for supporting the development of C# Algorithms with your first issue! We look forward to handling it.

@ikp1997
Copy link

@ikp1997 ikp1997 commented Sep 11, 2020

What exactly bug fixing is needed?

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

Successfully merging a pull request may close this issue.

None yet
2 participants
You can’t perform that action at this time.