Created
November 30, 2018 07:35
-
-
Save Oraindrop/a4a4704f0f9a44cef3ac0f3e8bc6308c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface DynamicArrayADT<E> { | |
int size(); | |
void set(int index, E value); | |
E get(int index); | |
E remove(int index); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment