-
Notifications
You must be signed in to change notification settings - Fork 0
/
todos
57 lines (57 loc) · 3.27 KB
/
todos
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
print bottom view of a binary tree
Print top view of a binary tree
Determine whether the given binary tree nodes are cousins of each other
Print cousins of a given node in a binary tree
Combinations of words formed by replacing given numbers with corresponding alphabets
Determine if a binary tree can be converted to another by doing any number of swaps of children
Print all paths from the root to leaf nodes of a binary tree
Find distance between given pairs of nodes in a binary tree
Sink nodes containing zero to the bottom of a binary tree
Convert a binary tree to a full tree by removing half nodes
Truncate a binary tree to remove nodes that lie on a path having a sum less than `k`
Convert binary tree to Left-child right-sibling binary tree
Print all paths from leaf to root node of a binary tree
Iteratively print the leaf to root path for every leaf node in a binary tree
Build a binary tree from a parent array
Find all nodes at a given distance from leaf nodes in a binary tree
Count all subtrees having the same value of nodes in a binary tree
Find the maximum difference between a node and its descendants in a binary tree
Construct a binary tree from inorder and level order sequence
Construct a full binary tree from the preorder sequence with leaf node information
Find postorder traversal of a binary tree from its inorder and preorder sequence
Set next pointer to the inorder successor of all nodes in a binary tree
Find preorder traversal of a binary tree from its inorder and postorder sequence
Find the difference between the sum of all nodes present at odd and even levels in a binary tree
Clone a binary tree with random pointers
Threaded Binary Tree — Overview and Implementation
Determine if a binary tree satisfies the height-balanced property of a red–black tree
Construct an ancestor matrix from a binary tree
Find all possible binary trees having the same inorder traversal
Check if each node of a binary tree has exactly one child
Evaluate a Binary Expression Tree
Construction of an expression tree
Fix children-sum property in a binary tree
Create a mirror of an m–ary tree
Print a two-dimensional view of a binary tree
Construct a binary tree from an ancestor matrix
Find inorder successor for the given key in a BST
Fix a binary tree that is only one swap away from becoming a BST
Print binary tree structure with its contents in C++
Maximum Independent Set Problem
Huffman Coding Compression Algorithm
Construct a Cartesian tree from an inorder traversal
Calculate the height of a binary tree with leaf nodes forming a circular doubly linked list
Link nodes present in each level of a binary tree in the form of a linked list
Convert a ternary tree to a doubly-linked list
Extract leaves of a binary tree into a doubly-linked list
In-place convert a binary tree to a doubly-linked list
Check whether the leaf traversal of given binary trees is the same or not
Efficiently print all nodes between two given levels in a binary tree
Spiral order traversal of a binary tree
Print all nodes of a perfect binary tree in a specific order
Print left view of a binary tree
Print corner nodes of every level in a binary tree
Convert a binary tree into a doubly-linked list in spiral order
Check if a binary tree is a min-heap or not
Print right view of a binary tree
Invert alternate levels of a perfect binary tree