gpt4 book ai didi

c++ - Makefile 拒绝工作

转载 作者:行者123 更新时间:2023-11-30 05:04:09 24 4
gpt4 key购买 nike

我遇到了一些链接器错误,我这辈子都无法解决。我只有一个 .h 文件和一个 .cc 文件,它们不会编译成可执行文件我不会在这里发布除 makefile 之外的所有代码:

# Compiler variables
CCFLAGS = -Wall

# Rule to link object code files to create executable file
assignment5.exe: assignment5.cc
g++ -Wall -g -std=c++11 assignment5.cc assignment5.h -o assignment5.exe

clean:
rm assignment5.exe

我在同一个目录中同时拥有 assignment5.h 和 assignment5.cc,当运行“make”时我得到这个错误:

assignment5.cc:113: undefined reference to `binTree::inorder(void (*)(int))'
assignment5.cc:116: undefined reference to `binTree::preorder(void (*)(int))'
assignment5.cc:119: undefined reference to `binTree::postorder(void (*)(int))'

如果有人能帮助我,我将永远感激编辑:那些问的人的代码.h 文件:

#ifndef ASSIGNMENT5
#define ASSIGNMENT5
class binTree; class BST;
class Node {
public:
// the value
int data;

// the left and right
Node * left;
Node * right;

// the constructor
Node(int data)
{
// set the data
this->data = data;

// set left and right to null
this->right = nullptr;
this->left = nullptr;
}
};
class binTree
{
public:
binTree();
virtual void insert( int ); //Inserts a node into the tree
unsigned height() const; //Returns height of the tree
unsigned size() const; //Returns size of the tree
void inorder( void(*)(int) ); //Inorder traversal of tree
void preorder( void(*)(int) ); //Preorder traversal
void postorder( void(*)(int) ); //Postorder traversal

protected:
Node* root; //root of the tree

private:
void insert( Node*&, int ); //Private version of insert()
unsigned height( Node* ) const; //Private version of height
unsigned size( Node* ) const; //Private version of size()
void inorder( Node*, void(*)(int) ); //Private version of inorder()
void preorder( Node*, void(*)(int) ); //Private version of preorder()
void postorder( Node*, void(*)(int) ); //Private version of postorder()

};
#endif

.cc 文件:

#include "assignment5.h"
#include <iostream>
#include <iomanip>
#include <algorithm>
#include <vector>
using namespace std;

const int MAX_SIZE = 40;
const int MAX_COUNT = 40;
const int WIDTH = 5;
const int ROW_SIZE = 8;
int mcount = 0;
int rcount = 0;

void display(int d)
{
if (mcount < MAX_COUNT) {
cout << setw(WIDTH) << d;
mcount++;
rcount++;
if (rcount == ROW_SIZE) {
cout << endl;
rcount = 0;
}
}
}

binTree::binTree()
{
// set the root to null pointer
root = nullptr;
}

void binTree::insert( int v ) //Inserts a node into the tree
{
// insert this value into the root
insert(root,v);
}

unsigned binTree::height() const //Returns height of the tree
{
// return the height of this tree
return height(root);
}
unsigned binTree::size() const //Returns size of the tree
{
// return the size
return size(root);
}
void binTree::inorder( void(*)(int) p ) //Inorder traversal of tree
{
// use the local inorder
inorder(root, p);
}
void binTree::preorder( void(*)(int) p ) //Preorder traversal
{
// use the local preorder
inorder(root, p);
}
void binTree::postorder( void(*)(int) p ) //Postorder traversal
{
// use the local inorder
postorder(root, p);
}

void binTree::insert( Node*& node, int n ) //Private version of insert()
{
// if this is null, create new node
if( node == nullptr )
{
// create new node
node = new Node(n);
}

// if node is less or more
if( n < node->data )
{
// go left
insert(node->left,n);
}
else if( n > node->data )
{
// go right
insert(node->right, n);
}
}

unsigned binTree::height( Node* node ) const //Private version of height
{
// if this is null, return 0
if( node == nullptr )
return 0;

// left height and right height
unsigned leftHeight = 0;
unsigned rightHeight = 0;

// check if left height
if( node->left != nullptr )
leftHeight = height( node->left );

// right height
if( node->right != nullptr )
rightHeight = height( node->right );

// return max
if( leftHeight > rightHeight )
return leftHeight + 1;
else
return rightHeight+1;
}
unsigned binTree::size( Node* node) const //Private version of size()
{
// if this is null
if( node == nullptr )
return 0;

// return size
return 1 + size(node->left) + size(node->right);
}

#define BINTREE_MAIN
#ifdef BINTREE_MAIN
int main() {
vector<int> v(MAX_SIZE);
for (int i=1; i<MAX_SIZE; i++)
v[i] = i;
random_shuffle( v.begin(), v.end());

binTree bt;
vector<int>::iterator it;
for (it=v.begin(); it!=v.end(); it++)
bt.insert( *it );

cout << "Height: " << bt.height() << endl;
cout << "Size: " << bt.size() << endl;
cout << "In order traverse (displaying first " << MAX_COUNT << " numbers): " << endl;
mcount = rcount = 0;
bt.inorder( display );
cout << "\n\nPre order traverse (displaying first " << MAX_COUNT << " numbers): " << endl;
mcount = rcount = 0;
bt.preorder( display );
cout << "\n\nPost order traverse (displaying first " << MAX_COUNT << " numbers): " << endl;
mcount = rcount = 0;
bt.postorder( display );

cout << endl;
return 0;
}

#endif

最佳答案

Makefile 不是(唯一的)罪魁祸首。你的例子充满了问题。对于初学者来说,这不是一个完整的例子,因为一半的方法没有定义,只是声明,并且没有 main(),甚至是一个虚拟的,当你试图构建一个可执行文件时,不是目标文件。这样一个不完整的例子真的很难帮助你。

而且你似乎没有说出全部真相。我的 g++ 调用在这一行中断得更早:

  void inorder( void(*)(int) ); //Inorder traversal of tree
expected primary-expression before ‘void’

您是否尝试声明一个方法,该方法接受一个指向函数 (int) 的指针参数?您需要了解什么是 syntax在 C++ 中。

您在 makefile 中的配方行也有缺陷:您不需要将头文件传递给编译器,当您在 .cc 文件中#include 时,它们会自动包含。您的构建行应类似于:

 g++ $(CCFLAGS) -g -std=c++11 assignment5.cc -o assignment5.o

关于c++ - Makefile 拒绝工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49076544/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com