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