public PriorityQueue(PRIORITY_SORT_TYPE sortType)
 {
     SortType = sortType;
 }
 public PriorityQueue()
 {
     SortType = PRIORITY_SORT_TYPE.ASCENDING;
 }