feature/dynamic-lists #6
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "feature/dynamic-lists"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
--- Testing Managed Linked List ---Managed Linked List Size: 3
Element 0: 1
Element 1: 2
Element 2: 3
--- Testing String Linked List ---String Linked List Size: 2
String 0: HelloString 1: World--- Testing Dynamic List ---Dynamic List Size: 5
Element 0: 10
Element 1: 20
Element 2: 30
Element 3: 40
Element 4: 50
After insertion at index 2, size: 6
Element 0: 10
Element 1: 20
Element 2: 999
Element 3: 30
Element 4: 30
Element 5: 30
Deleted element at index 3.After deletion, size: 5
Element 0: 10
Element 1: 20
Element 2: 999
Element 3: 30
Element 4: 30
Looks good - like the comments & the test cases, Approved,