实验二差一个冒泡排序

This commit is contained in:
2024-10-19 01:16:51 +08:00
parent edff212381
commit ab6dd9f48f
+11 -1
View File
@@ -1,2 +1,12 @@
//test2.cpp
#include <iostream>
#include"LinkList.h"
#include"LinkList.h" //LinkList类见第一题
using namespace std;
int main() {
bookList books = new bookNode;
books->next = NULL;
create(books);
display(&books);
return 0;
}