C# Class CodingPractice.Heap.tempHeap

Inheritance: IPriorityQueue
Show file Open project: cabhishek/algorithms-datastructures Class Usage Examples

Public Methods

Method Description
dequeue ( ) : IComparable
enqueue ( IComparable item ) : void
isEmpty ( ) : bool
isFull ( ) : bool
tempHeap ( ) : System

Private Methods

Method Description
reheapUp ( IComparable item ) : void

Method Details

dequeue() public method

public dequeue ( ) : IComparable
return IComparable

enqueue() public method

public enqueue ( IComparable item ) : void
item IComparable
return void

isEmpty() public method

public isEmpty ( ) : bool
return bool

isFull() public method

public isFull ( ) : bool
return bool

tempHeap() public method

public tempHeap ( ) : System
return System