||=== Build file: "no target" in "no project" (compiler: unknown) ===| C:\Users\hh\Desktop\C\二叉排序树.o:二叉排序树.cpp|| undefined reference to `BiSortTree::SearchBst(BiNode*, int)'| ||error: ld returned 1 exit status| ||=== Build failed: 2 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|
时间: 2023-08-03 20:55:19 浏览: 223
二叉排序树.cpp
这个错误提示是在编译链接时出现的,它告诉你在链接阶段找不到 `BiSortTree::SearchBst(BiNode*, int)` 的定义。这可能是因为你没有在编译链接时将相关的源文件或库文件加入到编译命令中。
你可以检查一下编译命令中是否包含了 `二叉排序树.o` 文件,以及是否正确地链接了相关的库文件。另外,也可以检查一下 `BiSortTree::SearchBst` 函数的定义是否正确,以及是否被正确地声明和实现。
如果以上方法还不能解决问题,你可以提供更多的代码和编译命令,我可以帮你进一步分析问题。
阅读全文