Sha256: cebd116fc42703f4a1b26aaa7f28dc1c84514bf7be290b4f27ca8a65e089e71a
Contents?: true
Size: 1.12 KB
Versions: 281
Compression:
Stored size: 1.12 KB
Contents
using System; using System.Collections; using System.Collections.Generic; public class BinarySearchTree : IEnumerable<int> { public BinarySearchTree(int value) { } public BinarySearchTree(IEnumerable<int> values) { } public int Value { get { throw new NotImplementedException("You need to implement this function."); } } public BinarySearchTree Left { get { throw new NotImplementedException("You need to implement this function."); } } public BinarySearchTree Right { get { throw new NotImplementedException("You need to implement this function."); } } public BinarySearchTree Add(int value) { throw new NotImplementedException("You need to implement this function."); } public IEnumerator<int> GetEnumerator() { throw new NotImplementedException("You need to implement this function."); } IEnumerator IEnumerable.GetEnumerator() { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
281 entries across 281 versions & 1 rubygems