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

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

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

@ikp1997
Copy link

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
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants