Data Structures Tutorial

Data Structures Tutorial Asymptotic Notation Structure and Union Array Data Structure Linked list Data Structure Type of Linked list Advantages and Disadvantages of linked list Queue Data Structure Implementation of Queue Stack Data Structure Implementation of Stack Sorting Insertion sort Quick sort Selection sort Heap sort Merge sort Bucket sort Count sort Radix sort Shell sort Tree Traversal of the binary tree Binary search tree Graph Spanning tree Linear Search Binary Search Hashing Collision Resolution Techniques

Misc Topic:

Priority Queue in Data Structure Deque in Data Structure Difference Between Linear And Non Linear Data Structures Queue Operations In Data Structure About Data Structures Data Structures Algorithms Types of Data Structures Big O Notations Introduction to Arrays Introduction to 1D-Arrays Operations on 1D-Arrays Introduction to 2D-Arrays Operations on 2D-Arrays Strings in Data Structures String Operations Application of 2D array Bubble Sort Insertion Sort Sorting Algorithms What is DFS Algorithm What Is Graph Data Structure What is the difference between Tree and Graph What is the difference between DFS and BFS Bucket Sort Dijkstra’s vs Bellman-Ford Algorithm Linear Queue Data Structure in C Stack Using Array Stack Using Linked List Recursion in Fibonacci Stack vs Array What is Skewed Binary Tree Primitive Data Structure in C Dynamic memory allocation of structure in C Application of Stack in Data Structures Binary Tree in Data Structures Heap Data Structure Recursion - Factorial and Fibonacci What is B tree what is B+ tree Huffman tree in Data Structures Insertion Sort vs Bubble Sort Adding one to the number represented an array of digits Bitwise Operators and their Important Tricks Blowfish algorithm Bubble Sort vs Selection Sort Hashing and its Applications Heap Sort vs Merge Sort Insertion Sort vs Selection Sort Merge Conflicts and ways to handle them Difference between Stack and Queue AVL tree in data structure c++ Bubble sort algorithm using Javascript Buffer overflow attack with examples Find out the area between two concentric circles Lowest common ancestor in a binary search tree Number of visible boxes putting one inside another Program to calculate the area of the circumcircle of an equilateral triangle Red-black Tree in Data Structures Strictly binary tree in Data Structures 2-3 Trees and Basic Operations on them Asynchronous advantage actor-critic (A3C) Algorithm Bubble Sort vs Heap Sort Digital Search Tree in Data Structures Minimum Spanning Tree Permutation Sort or Bogo Sort Quick Sort vs Merge Sort Boruvkas algorithm Bubble Sort vs Quick Sort Common Operations on various Data Structures Detect and Remove Loop in a Linked List How to Start Learning DSA Print kth least significant bit number Why is Binary Heap Preferred over BST for Priority Queue Bin Packing Problem Binary Tree Inorder Traversal Burning binary tree Equal Sum What is a Threaded Binary Tree? What is a full Binary Tree? Bubble Sort vs Merge Sort B+ Tree Program in Q language Deletion Operation from A B Tree Deletion Operation of the binary search tree in C++ language Does Overloading Work with Inheritance Balanced Binary Tree Binary tree deletion Binary tree insertion Cocktail Sort Comb Sort FIFO approach Operations of B Tree in C++ Language Recaman’s Sequence Tim Sort Understanding Data Processing Applications of trees in data structures Binary Tree Implementation Using Arrays Convert a Binary Tree into a Binary Search Tree Create a binary search tree Horizontal and Vertical Scaling Invert binary tree LCA of binary tree Linked List Representation of Binary Tree Optimal binary search tree in DSA Serialize and Deserialize a Binary Tree Tree terminology in Data structures Vertical Order Traversal of Binary Tree What is a Height-Balanced Tree in Data Structure Convert binary tree to a doubly linked list Fundamental of Algorithms Introduction and Implementation of Bloom Filter Optimal binary search tree using dynamic programming Right side view of binary tree Symmetric binary tree Trim a binary search tree What is a Sparse Matrix in Data Structure What is a Tree in Terms of a Graph What is the Use of Segment Trees in Data Structure What Should We Learn First Trees or Graphs in Data Structures All About Minimum Cost Spanning Trees in Data Structure Convert Binary Tree into a Threaded Binary Tree Difference between Structured and Object-Oriented Analysis FLEX (Fast Lexical Analyzer Generator) Object-Oriented Analysis and Design Sum of Nodes in a Binary Tree What are the types of Trees in Data Structure What is a 2-3 Tree in Data Structure What is a Spanning Tree in Data Structure What is an AVL Tree in Data Structure Given a Binary Tree, Check if it's balanced B Tree in Data Structure Convert Sorted List to Binary Search Tree Flattening a Linked List Given a Perfect Binary Tree, Reverse Alternate Levels Left View of Binary Tree What are Forest Trees in Data Structure Compare Balanced Binary Tree and Complete Binary Tree Diameter of a Binary Tree Given a Binary Tree Check the Zig Zag Traversal Given a Binary Tree Print the Shortest Path Given a Binary Tree Return All Root To Leaf Paths Given a Binary Tree Swap Nodes at K Height Given a Binary Tree Find Its Minimum Depth Given a Binary Tree Print the Pre Order Traversal in Recursive Given a Generate all Structurally Unique Binary Search Trees Perfect Binary Tree Threaded Binary Trees Function to Create a Copy of Binary Search Tree Function to Delete a Leaf Node from a Binary Tree Function to Insert a Node in a Binary Search Tree Given Two Binary Trees, Check if it is Symmetric A Full Binary Tree with n Nodes Applications of Different Linked Lists in Data Structure B+ Tree in Data Structure Construction of B tree in Data Structure Difference between B-tree and Binary Tree Finding Rank in a Binary Search Tree Finding the Maximum Element in a Binary Tree Finding the Minimum and Maximum Value of a Binary Tree Finding the Sum of All Paths in a Binary Tree Time Complexity of Selection Sort in Data Structure How to get Better in Data Structures and Algorithms Binary Tree Leaf Nodes Classification of Data Structure Difference between Static and Dynamic Data Structure Find the Union and Intersection of the Binary Search Tree Find the Vertical Next in a Binary Tree Finding a Deadlock in a Binary Search Tree Finding all Node of k Distance in a Binary Tree Finding Diagonal Sum in a Binary Tree Finding Diagonal Traversal of The Binary Tree Finding In-Order Successor Binary Tree Finding the gcd of Each Sibling of the Binary Tree Greedy Algorithm in Data Structure How to Calculate Space Complexity in Data Structure How to find missing numbers in an Array Kth Ancestor Node of Binary Tree Minimum Depth Binary Tree Mirror Binary Tree in Data Structure Red-Black Tree Insertion Binary Tree to Mirror Image in Data Structure Calculating the Height of a Binary Search Tree in Data Structure Characteristics of Binary Tree in Data Structure Create a Complete Binary Tree from its Linked List Field in Tree Data Structure Find a Specified Element in a binary Search Tree Find Descendant in Tree Data Structure Find Siblings in a Binary Tree Given as an Array Find the Height of a Node in a Binary Tree Find the Second-Largest Element in a Binary Tree Find the Successor Predecessor of a Binary Search Tree Forest of a Tree in Data Structure In Order Traversal of Threaded Binary Tree Introduction to Huffman Coding Limitations of a Binary Search Tree Link State Routing Algorithm in Data Structure Map Reduce Algorithm for Binary Search Tree in Data Structure Non-Binary Tree in Data Structure Quadratic Probing Example in Hashing Scope and Lifetime of Variables in Data Structure Separate Chaining in Data Structure What is Dynamic Data Structure Separate Chaining vs Open Addressing Time and Space Complexity of Linear Data Structures Abstract Data Types in Data Structures Binary Tree to Single Linked List Count the Number of Nodes in the Binary Tree Count Total No. of Ancestors in a Binary Search Tree Elements of Dynamic Programming in Data Structures Find cost of tree with prims algorithm in data structures Find Preorder Successor in a Threaded Binary Tree Find Prime Nodes Sum Count in Non-Binary Tree Find the Right Sibling of a Binary Tree with Parent Pointers Find the Width of the Binary Search Tree Forest trees in Data Structures Free Tree in Data Structures Frequently asked questions in Tree Data Structures Infix, Postfix and Prefix Conversion Time Complexity of Fibonacci Series What is Weighted Graph in Data Structure What is the Advantage of Linear Search?

Finding Diagonal Sum in a Binary Tree

Implementation

// Writing the C++ program to see the implementation and determine the diagonal sum of a binary tree. 
#include <bits/stdc++.h>
using namespace std;


struct __nod
{
	int record;
	struct __nod* Lft;
	struct __nod* Rt;
};


struct __nod* new__nod(int record)
{
	struct __nod* __nod =
			(struct __nod*)malloc(sizeof(struct __nod));
	
	__nod->record = record;
	__nod->Lft = __nod->Rt = NILL;


	return __nod;
}


// we will now describe some terminologies here, 
Root- it’s the base of the binary tree 
// vd – it’s the vertical distance of the diagonal
// diagSum – it’s the map to store diagonal
// Sum( its passed by the reference)
void diagSumUtil(struct __nod* root,
				int vd, map<int, int> &diagSum)
{
	if(!root)
		return;
		
	diagSum[vd] += root->record;


	// incrementing the vertical distance(vd) of the left child. 
	diagSumUtil(root->Lft, vd + 1, diagSum);


	// the vertical distance on the right child remains unchanged.  
	diagSumUtil(root->Rt, vd, diagSum);
}


// creating a new function will help us evaluate the diagonal sum of the given binary tree. 
void diagSum(struct __nod* root)
{


	// creating a map that will store all the diagonal sum 
	map<int, int> diagSum;
	
	diagSumUtil(root, 0, diagSum);


	map<int, int>::iterator it;
		cout << "Diagonal sum in a binary tree is - ";
	
	for(it = diagSum.begin();
				it != diagSum.end(); ++it)
	{
		cout << it->second << " ";
	}
}


// writing the main code to test the above functions
int main()
{
	struct __nod* root = new__nod(1);
	root->Lft = new__nod(2);
	root->Rt = new__nod(3);
	root->Lft->Lft = new__nod(9);
	root->Lft->Rt = new__nod(6);
	root->Rt->Lft = new__nod(4);
	root->Rt->Rt = new__nod(5);
	root->Rt->Lft->Rt = new__nod(7);
	root->Rt->Lft->Lft = new__nod(12);
	root->Lft->Rt->Lft = new__nod(11);
	root->Lft->Lft->Rt = new__nod(10);


	diagSum(root);


	return 0;
}

Output:

Finding Diagonal Sum in a Binary Tree

Example 2

// Writing the C# program to see the implementation and determine the diagonal sum of a binary tree. 
using System;
using System.Collections.Generic;


// creating a new tree node
public


class Tree__nod
{
	public
	int record; // the node has all the record, i.e., data
	public


	int vd; // it’s the vertical distance measured diagonally
	public
	Tree__nod Lft, Rt; // it's the left and right child reference.


	// creating a constructor for the tree node.
	public Tree__nod(int record)
	{
	this.record = record;
	vd = int.MaxValue;
	Lft = Rt = NILL;
	}
}


// creating a class for the tree and naming it the same.
public class Tree
{
Tree__nod root;//T ree root


// Constructor for the tree
public Tree(Tree__nod root)
{
	this.root = root;
}


// creating the diagonal sum method
public void diagSum()
{


	// creating a queue that will store all the tree nodes. 
	Queue<Tree__nod> queue = new Queue<Tree__nod>();


	// creating a map that will store the sum of all the nodes lying diagonally. 
	Dictionary<int, int> map = new Dictionary<int,int>();


	// we have to allot the vertical distance of the root as 0. 
	root.vd = 0;


	// we have to add the root node to the queue. 
	queue.Enqueue(root);


	// creating a loop while the queue is not empty. 
	while (queue.Count != 0)
	{


	// we have to remove the front tree node from the queue
	Tree__nod curr = queue.Dequeue();


	// From the dequeued node, we must get the vertical distance. 
	int vd = curr.vd;


	// we have to get the sum of the node's right child and the right of the right child. 
	while (curr != NILL)
	{
		int prevSum;
		if(!map.ContainsKey(vd))
		prevSum = 0;
		else
		prevSum = map[vd];


		if(map.ContainsKey(vd))
		map[vd] = prevSum + curr.record;
		else
		map.Add(vd, prevSum + curr.record);


		// if, in the case of any of the nodes given below, the left child is not NILL, then we have to add it to the queue to process in the future. 
		if (curr.Lft != NILL)
		{
		curr.Lft.vd = vd + 1;
		queue.Enqueue(curr.Lft);
		}


		//We can move to the current node at the right child.  
		curr = curr.Rt;
	}
	}




	// we have to explore the elements using an iterator. 
	Console.Write("Diagonal sum in a binary tree is - ");
	foreach(KeyValuePair<int, int> iterator in map)
	{


	// Map.Entry<int, int> me = iterator.next();
	Console.Write(iterator.Value + " ");
	}
}
}




// writing the main code to test the above functions
public class DiagSum
{
public static void Main(String[] args)
{
	Tree__nod root = new Tree__nod(1);
	root.Lft = new Tree__nod(2);
	root.Rt = new Tree__nod(3);
	root.Lft.Lft = new Tree__nod(9);
	root.Lft.Rt = new Tree__nod(6);
	root.Rt.Lft = new Tree__nod(4);
	root.Rt.Rt = new Tree__nod(5);
	root.Rt.Lft.Lft = new Tree__nod(12);
	root.Rt.Lft.Rt = new Tree__nod(7);
	root.Lft.Rt.Lft = new Tree__nod(11);
	root.Lft.Lft.Rt = new Tree__nod(10);
	Tree tree = new Tree(root);
	tree.diagSum();
}
}

Output:

Finding Diagonal Sum in a Binary Tree

Example 3

// Writing the Java program to see the implementation and determine the diagonal sum of a binary tree. 
import java.util.*;
import java.util.Map.Entry;
// creating a new tree nod
class Tree__nod
{
	int record; // the node has all the record, i.e., data
	int vd; // it’s the vertical distance measured diagonally
	Tree__nod Lft, Rt; // it’s the left and right child reference


		// creating a constructor for the tree node.
	public Tree__nod(int record)
	{
		this.record = record;
		vd = Integer.MAX_VALUE;
		Lft = Rt = NILL;
	}
}


// creating a class for the tree and naming it the same.
class Tree
{
	Tree__nod root;//Tree root
// Constructor for the tree


	public Tree(Tree__nod root) { this.root = root; }


// creating the diagonal sum method
	public void diagSum()
	{
		// creating a queue that will store all the tree nodes. 
		Queue<Tree__nod> queue = new LinkedList<Tree__nod>();


			// creating a map that will store the sum of all the nodes lying diagonally.  
		Map<Integer, Integer> map = new TreeMap<>();


	// we have to allot the vertical distance of the root as 0. 
		root.vd = 0;


		// we have to add the root node to the queue. 
		queue.add(root);


		// creating a loop while the queue is not empty. 
		while (!queue.isEmpty())
		{
			// we have to remove the front tree node from the queue
			Tree__nod curr = queue.remove();


			// From the dequeued node, we must get the vertical distance. 
			int vd = curr.vd;


// we have to get the sum of the node's right child and the right of the right child. 


			while (curr != NILL)
			{
				int prevSum = (map.get(vd) == NILL)? 0: map.get(vd);
				map.put(vd, prevSum + curr.record);
		// if, in the case of any of the nodes given below, the left child is not NILL, then we have to add it to the queue to process in the future. 
				if (curr.Lft != NILL)
				{
					curr.Lft.vd = vd+1;
					queue.add(curr.Lft);
				}
//We can move to the current node at the right child.  
				curr = curr.Rt;
			}
		}


		// Make an entry set from the map.
		Set<Entry<Integer, Integer>> set = map.entrySet();


		// we have to explore the elements using an iterator. 
		Iterator<Entry<Integer, Integer>> iterator = set.iterator();


		// we have to explore the elements using an iterator. 
		System.out.print("Diagonal sum in a binary tree is - ");
		while (iterator.hasNext())
		{
			Map.Entry<Integer, Integer> me = iterator.next();


			System.out.print(me.getValue()+" ");
		}
	}
}


// writing the main code to test the above functions
public class DiagSum
{
	public static void main(String[] args)
	{
		Tree__nod root = new Tree__nod(1);
		root.Lft = new Tree__nod(2);
		root.Rt = new Tree__nod(3);
		root.Lft.Lft = new Tree__nod(9);
		root.Lft.Rt = new Tree__nod(6);
		root.Rt.Lft = new Tree__nod(4);
		root.Rt.Rt = new Tree__nod(5);
		root.Rt.Lft.Lft = new Tree__nod(12);
		root.Rt.Lft.Rt = new Tree__nod(7);
		root.Lft.Rt.Lft = new Tree__nod(11);
		root.Lft.Lft.Rt = new Tree__nod(10);
		Tree tree = new Tree(root);
		tree.diagSum();
	}
}

Output:

Finding Diagonal Sum in a Binary Tree

Example 4

<script>
// Writing the Javascript program to see the implementation and determine the diagonal sum of a binary tree. 
	class Tree__nod {
		// creating a new tree node
// creating a constructor for the tree node.
		constructor(record) {
		this.record = record; // the node has all the record,i.e data
		this.vd = 2147483647; // it’s the vertical distance measured diagonally
		this.Lft = NILL; // it’s the left and right child reference
		this.Rt = NILL;
		}
	}
// creating a class for the tree and naming it the same.
	class Tree {
	// Constructor for the tree
		constructor(root) {
		this.root = root; //Tree root
		}


		// creating the diagonal sum method
		diagSum() {
		// creating a queue that will store all the tree nodes. 


		var queue = [];


			// creating a map that will store the sum of all the nodes lying diagonally. 
		var map = {};


		// we have to allot the vertical distance of the root as 0. 
		this.root.vd = 0;


		// we have to add the root node to the queue. 
		queue.push(this.root);


		// creating a loop while the queue is not empty. 
		while (queue. length != 0) {
			// we have to remove the front tree node from the queue 
			var curr = queue.shift();


		// From the dequeued node, we must get the vertical distance. 
			var vd = curr.vd;


			// we have to get the sum of the node's right child and the right of the right child. 
			while (curr != NILL) {
			var prevSum;
			if (!map.hasOwnProperty(vd))
			prevSum = 0;
			else prevSum = map[vd];


			if (map.hasOwnProperty(vd))
			map[vd] = prevSum + curr.record;
			else
			map[vd] = prevSum + curr.record;


				// if, in the case of any of the nodes given below, the left child is not NILL, then we have to add it to the queue to process in the future. 
			if (curr.Lft != NILL) {
				curr.Lft.vd = vd + 1;
				queue.push(curr.Lft);
			}


			//We can move to the current node at the right child.  
			curr = curr.Rt;
			}
		}


		// we have to explore the elements using an iterator. 
		document.write("Diagonal sum in a binary tree is - ");
		for (const [key, value] of Object.entries(map)) {
			// Map.Entry<int, int> me = iterator.next();
			document.write(value + " ");
		}
		}
	}
// writing the main code to test the above functions


	var root = new Tree__nod(1);
	root.Lft = new Tree__nod(2);
	root.Rt = new Tree__nod(3);
	root.Lft.Lft = new Tree__nod(9);
	root.Lft.Rt = new Tree__nod(6);
	root.Rt.Lft = new Tree__nod(4);
	root.Rt.Rt = new Tree__nod(5);
	root.Rt.Lft.Lft = new Tree__nod(12);
	root.Rt.Lft.Rt = new Tree__nod(7);
	root.Lft.Rt.Lft = new Tree__nod(11);
	root.Lft.Lft.Rt = new Tree__nod(10);
	var tree = new Tree(root);
	tree.diagSum();
	
</script>

Output:

Finding Diagonal Sum in a Binary Tree

Example 5

# Write a new program to determine the binary tree's diagonal sum. 


class new__nod:
	def __init__(self, record):
		self.record = record
		self.Lft = self.Rt = None
		
# Write a function to evaluate the height of the binary tree.
# We will now describe some terminologies here, 
Root- it’s the base of the binary tree 
# vd – it’s the vertical distance of the diagonal
# diagSum – it’s the map to store diagonal
# Sum( its passed by the reference)
def diagSumUtil(root, vd, diagSum) :


	if(not root):
		return
		
	if vd not in diagSum:
		diagSum[vd] = 0
	diagSum[vd] += root.record


# Incrementing the vertical distance(vd) of the left child. 
	diagSumUtil(root.Lft, vd + 1,
						diagSum)


	# The vertical distance on the right child remains unchanged.  
	diagSumUtil(root.Rt, vd,
					diagSum)


# Creating a new function that will help us evaluate the diagonal sum of the given binary tree. 
def diagSum(root) :


	# Creating a map that will store all the diagonal sum
	diagSum = dict()
	
	diagSumUtil(root, 0, diagSum)


	print("Diagonal sum in a binary tree is - ",
									end = "")
	
	For it in diagSum:
		print(diagSum[it], end = " ")
		
# Writing the main code to test the above functions
if __name__ == '__main__':
	root = new__nod(1)
	root.Lft = new__nod(2)
	root.Rt = new__nod(3)
	root.Lft.Lft = new__nod(9)
	root.Lft.Rt = new__nod(6)
	root.Rt.Lft = new__nod(4)
	root.Rt.Rt = new__nod(5)
	root.Rt.Lft.Rt = new__nod(7)
	root.Rt.Lft.Lft = new__nod(12)
	root.Lft.Rt.Lft = new__nod(11)
	root.Lft.Lft.Rt = new__nod(10)


	diagSum(root)

Output:

Finding Diagonal Sum in a Binary Tree