1. 程式人生 > >5 隊列的數據結構

5 隊列的數據結構

span log code 數據結構 front nbsp private ron fin

1 package com.wwj.cn;
2 
3 public class Queue {
4 private final int MAXSIZE = 10;
5 int[] data = new int[MAXSIZE];
6 int front;
7 int rear;
8 }

5 隊列的數據結構