Files
data-structures-and-algorithms/homework2/test2.cpp
T
2024-10-19 01:16:51 +08:00

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;
}