Files
data-structures-and-algorithms/homework2/test1.cpp
T
2024-10-19 00:54:57 +08:00

15 lines
244 B
C++

//test1.cpp
#include <iostream>
#include "LinkList.h"
using namespace std;
int main() {
bookList books = new bookNode;
books->next = NULL;
create(books);
cout << getLength(&books) << endl;
display(&books);
return 0;
}