UHuh.hashnode.dev·Mar 15, 2023Leetcode 958 || Check Completeness of a Binary TreeProblem Link https://leetcode.com/problems/check-completeness-of-a-binary-tree/ Problem Description The root of a tree is given as input. We have to check if the given tree is a complete binary tree or not. What is a complete binary tree? We will und...DiscussDaily LeetCode Challenge
Sivaraman Arumugamsivayuvi79.hashnode.dev·Oct 1, 2022DSA-Heap SortHeap Sort: Before starting the heap sort we need to know the Tree Binary Data Structure very well. Binary Tree Data Structure: Binary Tree DS has one parent node and at least two child node (left and right). We can classify Binary tree into three ty...DiscussDSA using Pythoncomplete binary tree