package main; import perso.LinkedListPerso; public class MainLinkedListPerso { public static void main(String[] args) { LinkedListPerso<Integer> linkedListStd = new LinkedListPerso<Integer>(); int taille = Integer.parseInt(args[0]); for (int i = 0; i < taille; i++) { linkedListStd.ajout(i, 0); } } }