隊列一(單向隊列的實現)

/** * 單向隊列 * @author huyua * */ public class Queue { //隊列大小 private int maxSize; //隊列數組 private int arr[]; //隊頭 private int font; //隊尾 private int end; //有效長度 private int elem; publ
相關文章
相關標籤/搜索