新微赢技术网

标题: 请高手看看这个程序哪里错了 [打印本页]

作者: 秋风扫落叶    时间: 2009-11-3 04:00
标题: 请高手看看这个程序哪里错了
主要功能:创建二叉排序树,中序遍历,结点取3的模,0,1,2个各输出不同的值。vs.net 2003.
// mlyyytree.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include<iostream>
#define MAX 100
using namespace std;

typedef struct _ml_YYY_Node
{
   int data;
   struct _ml_YYY_Node * lc;
   struct _ml_YYY_Node * rc;
}ml_YYY_BTree;//定义树结点的结构体



//二叉排序树的类定义
class ml_YYY_CreateTree
{
public:
     ml_YYY_CreateTree(int r[],int n);
   
    virtual ~ml_YYY_CreateTree();
    void ml_YYY_InSert(ml_YYY_BTree * root , ml_YYY_BTree * s);//在二叉树中插入结点
    void mlYYYinOrder(ml_YYY_BTree * root);//中序遍历
private:
    ml_YYY_BTree * root;
    ml_YYY_BTree * s;  //二叉排序树的根指针
};


//插入操作
void ml_YYY_CreateTree:: ml_YYY_InSert(ml_YYY_BTree * root , ml_YYY_BTree * s)
{
    if(root == NULL)
    {
        root = s ;
    }
    else if(s->data < root->data)
    {
        ml_YYY_InSert(root->lc , s);
    }
    else




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2