namespace Heap { public interface IHeapifyable { D Data { get; set; } K Key { get; } int Position { get; } } }