| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1214 人关注过本帖
标题:二叉树求助!!!
取消只看楼主 加入收藏
jason444
Rank: 1
等 级:新手上路
帖 子:15
专家分:0
注 册:2004-12-26
收藏
 问题点数:0 回复次数:0 
二叉树求助!!!

以下是二叉树的插入,生成和遍例程序.编译无误,但执行时是非法操作.大家帮忙看看问题在哪?谢谢各位!

#include <iostream.h>

typedef int datatype;

struct node { datatype data; node *lchild,*rchild; };

// Insert keyword to bintree void Ibtree( node *root,datatype key ) { if( root == NULL ) { node *root = new node; root->data = key; root->lchild = root->rchild =NULL; } else if ( root->data == key ) return; else if ( root->data<key ) Ibtree( root->lchild,key ); else Ibtree( root->rchild,key ); }

// Great bintree node* Gbtree( datatype a[],int n ) // n is the length of the array a { node *root = new node; root = NULL; for( int i=0; i<=n-1; i++ ) { Ibtree( root,a[i] ); } return root; //return the root of the tree }

// Show bintree void Sbtree( node *root ) { if ( root->lchild != NULL ) Sbtree( root->lchild ); cout<< root->data <<endl; if ( root->rchild != NULL ) Sbtree( root->rchild ); }

void main() { datatype a[3] = {9,5,10}; node *root = Gbtree( a,3 ); Sbtree( root ); }

搜索更多相关主题的帖子: 二叉树 
2004-12-27 13:10
快速回复:二叉树求助!!!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.037604 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved