Newer
Older
public class MainLinkedListStd {
public static void main(String[] args) {
LinkedListStd<Integer> linkedListStd = new LinkedListStd<Integer>();
int taille = Integer.parseInt(args[0]);
for (int i = 0; i < taille; i++) {
linkedListStd.ajout(i, 0);
}
}
}