linux h cpp文件夹,用C++开发工程时项目的管理: .h和.cpp文件的存放

在用C++开发大型工程时,如何组织文件的存放很重要。总的来说,.h文件用于存放对类的定义,包括类中的数据成员和函数成员。.cpp文件用于实现了类中的成员函数。为了便于理解,有以下例子:

我们用C++实现了一个二叉树的类,其中对类的定义放在BinaryTree.h文件中:

#pragma once

#include"iostream"

using namespace std;

struct Node

{

char data;

Node *l;

Node *r;

};

class BinaryTree

{

int level;

int node_num;

int array_len;

Node *temp[100];

public:

Node *root;

BinaryTree(void);

~BinaryTree(void);

void count_node();

void pre_order_bitree(Node *N);

void in_order_bitree(Node *N);

void post_order_bitree(Node *N);

};

在.cpp中需要包含 #include "BinaryTree.h",主要的代码是类中成员函数的实现,以前序遍历为例:

void BinaryTree::pre_order_bitree(Node *N)

{

if(N!=NULL)

{

cout<< N->data;

pre_order_bitree(N->l);

pre_order_bitree(N->r);

}

}

在主函数中只需要将头文件包含进去,就可以了,

#include "StdAfx.h"

#include"BinaryTree.h"

int main()

{

BinaryTree biTree; //call the construct-function

biTree.count_node();

cout<

biTree.pre_order_bitree(biTree.root);

return 1;

}0b1331709591d260c1c78e86d0c51c18.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值