Skip to content
  • Linkedin
  • Youtube
  • Pinterest
  • Home
  • Privacy Policy
  • About
  • Contact
Programmingoneonone

Programmingoneonone

Programmingoneonone is a website that publishes daily tutorials, methods, guides, and articles on IT, Education, and technology.

  • Home
  • Human Values
  • DSA
  • IoT Tutorials
  • Interview Questions and Answers
  • Toggle search form

Tag: Data Structure

Heap in Data Structure

Posted on 5 June 202023 April 2023 By YASH PAL No Comments on Heap in Data Structure
Heap in Data Structure

In Data Structure a Heap is a Binary tree in which all levels have a maximum number of nodes except possibly the last level and in the last level all the nodes are to the left and the key in any node is greater than or equal to the keys in both children of the…

Learn More “Heap in Data Structure” »

Computer Science Tutorials, Data Structures Tutorials

Deletion in Binary Search Tree

Posted on 4 June 202023 April 2023 By YASH PAL No Comments on Deletion in Binary Search Tree
Deletion in Binary Search Tree

While performing deletion operation in a binary search tree we come to three cases. the node that we want to delete let’s see them one by one with the help of an example Node has no child For deleting a node that doesn’t have any child then we replace the linked part of the node’s…

Learn More “Deletion in Binary Search Tree” »

Computer Science Tutorials, Data Structures Tutorials

Insertion in Binary Search Tree

Posted on 4 June 202023 April 2023 By YASH PAL No Comments on Insertion in Binary Search Tree
Insertion in Binary Search Tree

To perform the Insertion operation in a binary search tree we need to follow some conditions because in the binary search tree, the left node has a value less than the root node and the right node has a value greater than the root node. Suppose we want to insert a new key X in the binary…

Learn More “Insertion in Binary Search Tree” »

Computer Science Tutorials, Data Structures Tutorials

Binary search tree in Data Structure

Posted on 4 June 202023 April 2023 By YASH PAL No Comments on Binary search tree in Data Structure
Binary search tree in Data Structure

The binary search tree is a tree in which all the values in the left subtree are less than the value of the root node and values of the right subtree are greater than the value of the root node. as you see in the above example the left subtree has values lesser than the…

Learn More “Binary search tree in Data Structure” »

Computer Science Tutorials, Data Structures Tutorials

Level order traversal of Binary Tree

Posted on 4 June 202023 April 2023 By YASH PAL No Comments on Level order traversal of Binary Tree
Level order traversal of Binary Tree

In level order traversal of Binary Tree, we visit each node of the tree level by level. let’s say we have a tree as you see in the image given below. here in the tree, there are 4 levels. So to find the level order of this tree we visit each level from top to…

Learn More “Level order traversal of Binary Tree” »

Computer Science Tutorials, Data Structures Tutorials

Postorder traversal of Binary tree

Posted on 4 June 202023 April 2023 By YASH PAL No Comments on Postorder traversal of Binary tree
Postorder traversal of Binary tree

In postorder traversal of a binary tree, we first traverse the left subtree of the root node and then the right subtree of the root node, and then we traverse the root node of the binary tree. Properties of postorder traversing let’s say we have a binary tree as you see in the image given…

Learn More “Postorder traversal of Binary tree” »

Computer Science Tutorials, Data Structures Tutorials

Preorder Traversal of Binary Tree

Posted on 3 June 202023 April 2023 By YASH PAL No Comments on Preorder Traversal of Binary Tree
Preorder Traversal of Binary Tree

In the Preorder traversal of a Binary Tree, we first visit the root node of the tree then the left subtree, and then the right subtree of the root node. Properties of Preorder Traversal let’s say we have a binary tree as you see in the given below image. to find the preorder of this…

Learn More “Preorder Traversal of Binary Tree” »

Computer Science Tutorials, Data Structures Tutorials

Inorder Traversal in Binary Tree

Posted on 3 June 202023 April 2023 By YASH PAL No Comments on Inorder Traversal in Binary Tree
Inorder Traversal in Binary Tree

In the Inorder traversal of the binary tree, we first visit the left subtree of the root node, and then we visit the root node and after that, we visit the right subtree of the root node. Properties of Inorder traversal let’s understand it with an example let’s say we have a binary tree as you see…

Learn More “Inorder Traversal in Binary Tree” »

Computer Science Tutorials, Data Structures Tutorials

Traversing in a Binary Tree

Posted on 3 June 202023 April 2023 By YASH PAL No Comments on Traversing in a Binary Tree
Traversing in a Binary Tree

Traversing a binary tree means visiting each node of the tree exactly once. and as we know the nodes of the tree are arranged in a hierarchical order so there are different ways to traverse a binary tree. we have three main tasks to traverse in the tree. Types of traversing in a binary tree….

Learn More “Traversing in a Binary Tree” »

Computer Science Tutorials, Data Structures Tutorials

Linked representation of Binary tree

Posted on 31 May 202023 April 2023 By YASH PAL No Comments on Linked representation of Binary tree
Linked representation of Binary tree

For the linked representation of a binary tree, we use a node that has three parts. in the first part, we store the reference of the left child of the node in the right part, we store the reference of the right child and in the middle part, we store the value of the node….

Learn More “Linked representation of Binary tree” »

Computer Science Tutorials, Data Structures Tutorials

Posts navigation

1 2 … 4 Next

Pick your Subject

  • Internet of Things
  • Data Structures/Algorithms
  • Interview Preparation
  • Human Values
  • Java Interview Questions and Answers (2023)
    Thinking of becoming a Java developer? I must say it’s a good choice! Java is continuously named the most popular programming language. And the...

    Learn More “Java Interview Questions and Answers (2023)” »

  • Iot(Internet of things) in healthcare
    IoT in Healthcare
    IoMT (Internet of Medical Things) stands for devices that can collect and exchange data – either with users or other devices via the internet,...

    Learn More “IoT in Healthcare” »

  • four stages of iot solution for industry
    IoT for Industry
    In this post, we are going to learn about use cases of IoT for Industry and four stages for providing IoT solutions. Machine Diagnosis...

    Learn More “IoT for Industry” »

  • Iot for agricultural
    IoT in Agriculture
    IoT technology has realized smart wearables, connected devices, automated machines, and driverless cars. However, in agriculture, the IoT has brought the greatest impact. Amongst the challenges...

    Learn More “IoT in Agriculture” »

  • Iot for logistics
    IoT in Logistics and Supply Chain
    IoT applications for smart logistics and supply chain systems:  Logistics Fleet Tracking  To track the locations of the vehicles in real time, the vehicle...

    Learn More “IoT in Logistics and Supply Chain” »

  • Algorithms Tutorials
  • Basic Programming
  • C Programming Tutorials
  • C++ Tutorials
  • Compiler Design Tutorials
  • Computer Networks Tutorials
  • Computer Organization Tutorials
  • Computer Science Tutorials
  • Data Structures Tutorials
  • DBMS Tutorials
  • Developer Guide
  • Digital Communication
  • Digital Logic Tutorials
  • Internet of Things Tutorials
  • Internet Tutorials
  • Interview questions answers
  • Java Tutorials
  • Javascript Tutorials
  • Machine Learning Tutorials
  • Operating Systems Tutorials
  • Programming Tutorials
  • Projects
  • Tips&Tricks
  • Tools
  • VBScript Tutorials
  • Java Interview Questions and Answers (2023)
    Thinking of becoming a Java developer? I must say it’s a good choice! Java is continuously named the most popular programming language. And the...

    Learn More “Java Interview Questions and Answers (2023)” »

  • Iot(Internet of things) in healthcare
    IoT in Healthcare
    IoMT (Internet of Medical Things) stands for devices that can collect and exchange data – either with users or other devices via the internet,...

    Learn More “IoT in Healthcare” »

  • four stages of iot solution for industry
    IoT for Industry
    In this post, we are going to learn about use cases of IoT for Industry and four stages for providing IoT solutions. Machine Diagnosis...

    Learn More “IoT for Industry” »

  • Iot for agricultural
    IoT in Agriculture
    IoT technology has realized smart wearables, connected devices, automated machines, and driverless cars. However, in agriculture, the IoT has brought the greatest impact. Amongst the challenges...

    Learn More “IoT in Agriculture” »

  • Iot for logistics
    IoT in Logistics and Supply Chain
    IoT applications for smart logistics and supply chain systems:  Logistics Fleet Tracking  To track the locations of the vehicles in real time, the vehicle...

    Learn More “IoT in Logistics and Supply Chain” »

Copyright © 2023 Programmingoneonone.

Powered by PressBook Blog WordPress theme