mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
694 B
19 lines
694 B
public class ExerciseRunner { |
|
public static void main(String[] args) { |
|
LinkedList list = new SingleLinkedList(); |
|
|
|
// Add elements to the list |
|
list.add(1); |
|
list.add(2); |
|
list.add(3); |
|
|
|
// Access elements by index |
|
System.out.println("Element at index 0: " + list.at(0)); // Expected output: 1 |
|
System.out.println("Element at index 1: " + list.at(1)); // Expected output: 2 |
|
System.out.println("Element at index 2: " + list.at(2)); // Expected output: 3 |
|
|
|
// Remove an element by index |
|
list.remove(1); |
|
System.out.println("Element at index 1 after removal: " + list.at(1)); // Expected output: 3 |
|
} |
|
} |