Skip to content
Snippets Groups Projects
MainLinkedListPerso.java 343 B
Newer Older
Thomas Lapp's avatar
Thomas Lapp committed
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);
		}
		

	}
}