1. 程式人生 > >數據結構學習--自定義數組

數據結構學習--自定義數組

獲取數據 數組 取數據 pty 學習 struct pre col aci

代碼如下:

 1 package DataStruct;
 2 
 3 public class Array {
 4 
 5     private int[] data;
 6     private int[] size;
 7 
 8     public Array(int capacity) {
 9         data = new int[capacity]
10         size = 0
11     }
12 
13 
14     //構造函數,傳入數組的容量capacity構造Array
15     public Array() {
16         this
(10); 17 } 18 19 //無參數的構造函數,默認數組的容量是capacity=0 20 public int getSize() { 21 return size; 22 } 23 24 //獲取數據中的元素個數 25 public int getCapatity() { 26 return data.length; 27 } 28 29 //獲取數據的容量 30 public boolean isEmpty() { 31 return size == 0; 32 } 33
34 }

數據結構學習--自定義數組