文章

6

粉丝

94

获赞

1

访问

3.9k

头像
二叉排序树2 题解:坑点  不考虑等于的情况  等于的时候不插入
P1411 华中科技大学机试题
发布于2024年3月21日 21:19
阅读数 531

#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;

vector<int> v;

typedef struct node{
    int val;
    struct node *left;
    struct node *right;
}node;


void f1( node *root){
    if(root!=NULL){
        cout<<root->val<<" ";
        if(root->left)f1(root->left);
        if(root->right)f1(root->right);
    }
}
void f2( node *root){
    if(root!=NULL){
        if(root->left)f2(root->left);
        cout<<root->val<<" ";
        if(root->right)f2(root->right);
    }
}
void f3( node *root){
    if(root){    
   &...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发