Files
data-structures-and-algorithms/homework2/test1.cpp
T
2024-12-05 15:46:08 +08:00

15 lines
258 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;
}