Skip to content

Instantly share code, notes, and snippets.

View smitj23's full-sized avatar
🎯
Focusing

smit smitj23

🎯
Focusing
View GitHub Profile
@smitj23
smitj23 / ArrayList.java
Created June 13, 2020 23:28
ArrayList implementation along with get, replace, append, delete, clone
import java.util.Arrays;
/**
* implementation of a generic dynamic array or Arraylist, with all utility methods.
* @param <T> generic class
*/
public class ArrayList<T> {
//default initial capacity / minimum capacity
private static final int DEFAULT_CAPACITY = 2;