算法分析——優先隊列

public class PriorityQueue { // 最小堆 public PriorityQueue(int max) { this.heap = new int[max + 2]; this.max = max + 1; } // 維護的堆數據 private int[] heap;
相關文章
相關標籤/搜索