Untitled

 avatar
unknown
plain_text
2 years ago
111 B
4
Indexable
namespace Linkedlist
{
    class Node
    {

        public int Data;
        public Node Next;
    }
}
Editor is loading...