Skip to content

Instantly share code, notes, and snippets.

@Oraindrop
Created November 30, 2018 07:35
Show Gist options
  • Save Oraindrop/a4a4704f0f9a44cef3ac0f3e8bc6308c to your computer and use it in GitHub Desktop.
Save Oraindrop/a4a4704f0f9a44cef3ac0f3e8bc6308c to your computer and use it in GitHub Desktop.
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