aalhour / C-Sharp-Algorithms

:books: :chart_with_upwards_trend: Plug-and-play class-library project of standard Data Structures and Algorithms in C#
MIT License
5.91k stars 1.4k forks source link

SLinkedList bug #148

Open gang89liu opened 4 years ago

gang89liu commented 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);

}

github-actions[bot] commented 4 years ago

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

ikp1997 commented 4 years ago

What exactly bug fixing is needed?