|
|
Data Structures & Algorithms in C
Linked List
Test Compile / Run Results
|
% gcc testLinkedList.c list.c -o testLinkedList % testLinkedList [Empty list] 0 0 1 0 1 2 0 1 2 3 0 1 2 3 4 0 1 2 3 4 5 0 1 2 3 4 5 6 0 1 2 3 4 5 6 7 0 1 2 3 4 5 6 7 8 0 1 2 3 4 5 6 7 8 9 [Finished all delete operations] 1 3 5 7 9 |