今天写二叉树秀逗了~~~
摘要:
今天想起写写二叉树,发现自己好久没有看这个然后秀逗了,这里涉及到的是值传递和地址传递的问题#include using namespace std;#include typedef struct BTNode{int data;BTNode *pLChild,*pRChild;}BTNode; //创建2叉树void CreateBTTree(BTNode*pTreeNode){int input;coutdata=input;coutdatapLChild);CreateBTTree(pTreeNode->pRChild);}}//先序遍历二叉树void XianXuBianLi(BT 阅读全文
posted @ 2013-11-26 14:43 AAAAAApple 阅读(246) 评论(0) 推荐(0) 编辑