Skip to content

ChandraPrakashSinghBisht/BST_priorityQueue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

BST_priorityQueue

Binary Search Tree using a Priority Queue

A Binary Search Tree (BST) is a tree in which all the nodes follow the below-mentioned properties − The value of the key of the left sub-tree is less than the value of its parent (root) node's key. The value of the key of the right sub-tree is greater than or equal to the value of its parent (root) node's key.

In a priority queue, the highest element is popped whenever we try to either traverse or remove an element. For insertion, higher the element's value, it will be inserted in the right side of the BST accordingly.

This program is made by Chandra Prakash Singh Bisht Commercial usage of this code is striclty prohibited.

About

Binary Search Tree using a Priority Queue

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages