#include "cll.h" using namespace std; int main() { /* Test CLL */ cout << "----------- Test construct -----------" << endl; cll list1; list1.display(); cout << "----------- Test insert front -----------" << endl; list1.insert_front(5); cout << "After insert 5 at front: "<