Skip to content

SimpleTechTalks

To make technologies simpler

  • Home
  • Data Structures
    • Linked List
    • Graph
    • Hashing
    • Stack
    • Queue
    • Priority Queue
    • Tree
      • Binary Tree
      • Binary Search Tree
    • wordpress
  • Programming
    • Unix
    • Dynamic Programming
    • C
    • C++
      • C++11
    • Python
  • Technology
    • Diameter
    • Microservices
    • Networking
    • Telecom
    • Tools
  • Questions & Answers
    • Programming Questions
    • Interview Questions
  • Contact Us
  • Home
  • Data Structures
    • Linked List
    • Graph
    • Hashing
    • Stack
    • Queue
    • Priority Queue
    • Tree
      • Binary Tree
      • Binary Search Tree
    • wordpress
  • Programming
    • Unix
    • Dynamic Programming
    • C
    • C++
      • C++11
    • Python
  • Technology
    • Diameter
    • Microservices
    • Networking
    • Telecom
    • Tools
  • Questions & Answers
    • Programming Questions
    • Interview Questions
  • Contact Us

Category: Priority Queue

Binary Tree / Priority Queue

Maximum Heap Explained With Simple Example

adminby admin

A Maximum Heap is a binary tree which has following properties:

  • Binary tree MUST be a complete binary tree which means all leaf nodes are present in either at height “h” or “h-1”.
  • Key stored in each node is smaller than or equal to keys in the node’s children.

Before going ahead, have a look into Binary Tree.

(more…)
Maximum Heap Explained With Simple Example Read More
Binary Tree / Priority Queue

Minimum Heap Explained With Simple Example

adminby admin

A minimum heap is a binary tree which has following properties:

  • Binary tree MUST be a complete binary tree which means all leaf nodes are present in either at height “h” or “h-1”.
  • Key stored in each node is smaller than or equal to keys in the node’s children.

Before going ahead have a look into Binary Tree.

(more…)
Minimum Heap Explained With Simple Example Read More
Priority Queue

Priority Queue Explained With Simple Example

adminby admin

A Priority Queue is an abstract data type similar to Queue which has following properties

  • Every element in the Priority Queue has a priority associated with it.
  • An element with high priority will be dequeued first.
  • If two element has same priority then they are dequeued based on normal Queue basis (FIFO).
(more…)
Priority Queue Explained With Simple Example Read More

Search

  • Binary Search Tree Deletion Of Node Explained With Simple Example
  • Difference Between Friend Function and Member Function
  • C++11: extern template Explained With Simple Example
  • AVL Tree Deletion Of Node Explained With Simple Example
  • Diameter Protocol Basics
  • Topological Sort Explained With Simple Example
  • Diameter Protocol Message Structure
  • Diameter Protocol AVP Structure
  • AVL Tree Self Balancing Rotations – Left Right Rotation explained
  • Binary Tree Inorder Traversal Explained With Simple Example
Copyright © 2025 SimpleTechTalks. Privacy Policy