Skip to content
Snippets Groups Projects
ArrayListPerso.java 588 B
Newer Older
public class ArrayListPerso<E> implements Structure{
	
	private E[] tableau;
	private int taille;
	private final static int taille_par_defaut = 1000;
	@Override
	public void ajout(Object element, int position) {
		// TODO Auto-generated method stub
		
	}
	@Override
	public void suppression(int position) {
		// TODO Auto-generated method stub
		
	}
	@Override
	public Object acces(int position) {
		// TODO Auto-generated method stub
		return null;
	}
	
	@SuppressWarnings("unchecked")
	public ArrayListPerso() {
		tableau = (E[]) new Object[taille_par_defaut];
	}