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

14 lines
232 B
C++

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