#include #define m 101 using std::cout; using std::endl; void testList() { LinkedList list; for(int i = 0; i < m; i++) list.insert(i); int* temp = list.toArray(); for(int i = 0; i< list.length(); i++){ cout << temp[i]<