BST查找最小值和最大值

c_cpp
阅读 43 收藏 0 点赞 0 评论 0

BST Find min and max.cpp
#include <iostream>
#include <bits/stdc++.h>
using namespace std;

// #BSTs #BasicProblem

class node{
    public:
    node* left;
    int data;
    node* right;
    node(){
        data=0;
        left=NULL;
        right=NULL;
    }
    node(int x){
        data=x;
        left=NULL;
        right=NULL;
    }
};

class BST{
    public:
    node* root;
    BST(){
        root=NULL;
    }
    node* BSTinsert(node* root,int x); // Inserts elements to form a BST (l<=n<=r) and returns root
    void preOrder(node* root); // Prints the elements of BST in 'pre order'
    void inOrder(node* root); // Prints the elements of BST in 'in order'
    void postOrder(node* root); // Prints the elements of BST in 'post order'
    void levelOrder(node* root); // Prints the elements of BST according the their levels
    node* findMax(node* root);  // returns the max element node's address or null if empty tree
    node* findMin(node* root);  // returns the min element node's address or null if empty tree
};
node* BST :: BSTinsert(node* root,int x){
    if(root==NULL){
        root=new node(x);
    }else{
        if(x<=root->data){            //if x<root
            root->left=BSTinsert(root->left,x); //insert in left branch
        }else{
            root->right=BSTinsert(root->right,x); //else insert in right branch
        }
    }
    return root;
}

void BST :: preOrder(node* root){    //  NLR - Node Left Right
    if(root==NULL){
        return;
    }else{
        cout<<root->data<<" ";
        preOrder(root->left);
        preOrder(root->right);
    }
}
void BST :: inOrder(node* root){    //  LNR - Left Node Right
    if(root==NULL){       // Prints in sorted order if BST is given
        return;
    }else{
        inOrder(root->left);
        cout<<root->data<<" ";
        inOrder(root->right);
    }
}
void BST :: postOrder(node* root){    //  LRN - Left Right Node
    if(root==NULL){
        return;
    }else{
        postOrder(root->left);
        postOrder(root->right);
        cout<<root->data<<" ";
    }
}
void BST :: levelOrder(node* root){    // Queue is used to print in level order
    if(root==NULL){                     //          1)8
        return;                         //      2)7        2)9
    }else{                              //  3)6               3)10
        vector<node*> Q;
        Q.push_back(root);
        while(Q.size()!=0){ // Print until Q is not empty
            node* temp=Q[0];
            cout<<temp->data<<" ";
            if(temp->left!=NULL){
                Q.push_back(temp->left); // enqueue left branch if not empty
            }
            if(temp->right!=NULL){
                Q.push_back(temp->right);   // enqueue right branch if not empty
            }
            Q.erase(Q.begin()+0); // dequeue the first node as it is already printed
        }
    }
}

node* BST :: findMax(node* root){
    if(root==NULL){
        return NULL;
    }
    if(root->right==NULL){  //----------------IMP--------------------//
        return root;    // in a BST max element is always to the right most side
    }else{              // if it is a not BST left side should also be searched and compared to root to find max;
        return findMax(root->right);
    }
}
node* BST :: findMin(node* root){
    if(root==NULL){
        return NULL;
    }
    if(root->left==NULL){   //----------------IMP--------------------//
        return root;    // in a BST min element is always to the left most side
    }else{              // if it is a not BST right side should also be searched and compared to root to find min;
        return findMin(root->left);
    }
}

int main() {
	BST t;
	int x;
	cout<<"No of elements ?"<<endl;
	cin>>x;
	while(x--){
        int n;
        cin>>n;
        t.root=t.BSTinsert(t.root,n);
	}
	cout<<"preOrder: ";
	t.preOrder(t.root);
	cout<<endl;
	cout<<"inOrder: ";
	t.inOrder(t.root);
	cout<<endl;
	cout<<"postOrder: ";
	t.postOrder(t.root);
	cout<<endl;
	cout<<"levelOrder: ";
	t.levelOrder(t.root);
	cout<<endl;
	
	node* n1;
	n1=t.findMax(t.root);
	if(n1==NULL){
        cout<<"Not present"<<endl;
	}else{
        cout<<"Max: "<<n1->data<<endl;
	}
	n1=t.findMin(t.root);
	if(n1==NULL){
        cout<<"Empty"<<endl;
	}else{
        cout<<"Min: "<<n1->data<<endl;
	}
	
	return 0;
}
评论列表


问题


面经


文章

微信
公众号

扫码关注公众号