Open gang89liu opened 4 years ago
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);
}
Thanks for supporting the development of C# Algorithms with your first issue! We look forward to handling it.
What exactly bug fixing is needed?
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;
}