//File: DataStructure.java //Name: Trai Pham //Date: 02/09/2020 //Course: CSE 8B /**class is what the other classes are extended to */ /**Abstract class that implements the BasicMethods interface. Methods from BasicMethods file will not be implemented. Every class that extends this class should implement methods from BasicMethods class */ public abstract class DataStructure implements BasicMethods{ //use this array to implement data structure protected int[] array; }