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
696 B
19 lines
696 B
5 months ago
|
public class ExerciseRunner {
|
||
|
public static void main(String[] args) {
|
||
|
LinkedList list = new CircularLinkedList();
|
||
|
|
||
|
// 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
|
||
|
}
|
||
|
}
|