//test2.cpp #include #include"LinkList.h" //LinkList类见第一题 using namespace std; int main() { bookList books = new bookNode; books->next = NULL; create(books); display(&books); return 0; }