Skip to content
Snippets Groups Projects
Commit 676bc501 authored by Ivan's avatar Ivan
Browse files

Merge branch 'master' of git.unistra.fr:echauvin/P4a

parents 44374096 58a140a9
Branches
No related merge requests found
import java.util.Random;
public class OurLinkedList implements Structure {
public class Link<T> {
public class Link {
int value;
Link next;
Link previous;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment