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?

Given a Binary Tree Swap Nodes at K Height

Implementation

// Writing a C++ program that will help us exchange the nodes. 
#include<bits/stdc++.h>
using namespace std;


// Creating a binary tree node.
struct __nod
{
	int record;
	struct __nod *Lft, *Rt;
};


// creating a function that will help us in creating a new tree node.
__nod* __nwNod(int record)
{
	__nod *temp = new __nod;
	temp->record = record;
	temp->Lft = temp->Rt = NILL;
	return temp;
}


// interchanging the two nodes.
void Swap( __nod **a , __nod **b)
{
	__nod * temp = *a;
	*a = *b;
	*b = temp;
}


// Creating a function that will surely swap the left and right nodes of the tree present at every k’th level. 
void swapEvryKlevelUtil( __nod *root, int level, int k)
{
	// writing the base case for the tree.
	if (root== NILL ||
			(root->Lft==NILL && root->Rt==NILL) )
		return ;


	//If we have the current level +1 and then we have to swap the one present in the swap vector, then we will probably swap the left and right nodes. 
	if ( (level + 1) % k == 0)
		Swap(&root->Lft, &root->Rt);


	// we have to do recursion for the left and right nodes.
	swapEvryKlevelUtil(root->Lft, level+1, k);
	swapEvryKlevelUtil(root->Rt, level+1, k);
}


// this function is mainly responsible for the recursive one.
// swapEvryKlevelUtil()
void swapEveryKLevel(__nod *root, int k)
{
	swapEvryKlevelUtil(root, 1, k);
}


// creating a brand new utility method for the in-order traversal of the tree.
void inorder(__nod *root)
{
	if (root == NILL)
		return;
	inorder(root->Lft);
	cout << root->record << " ";
	inorder(root->Rt);
}


// main code
int main()
{
	/* 1
		/ \
	2	 3
	/	 / \
	4	 7 8 */
	struct __nod *root = __nwNod(1);
	root->Lft = __nwNod(2);
	root->Rt = __nwNod(3);
	root->Lft->Lft = __nwNod(4);
	root->Rt->Rt = __nwNod(8);
	root->Rt->Lft = __nwNod(7);


	int k = 2;
	cout << "Before swap __nod :"<<endl;
	inorder(root);


	swapEveryKLevel(root, k);


	cout << "\nAfter swap __nod :" << endl;
	inorder(root);
	return 0;
}

Output:

Given a Binary Tree Swap Nodes at K Height

Example 2)

// Writing a C# program that will help us exchange the nodes. 
using System;


class TFT
{


public class __nod
{
	public int record;
	public __nod Lft, Rt;
};
// creating a function that will help us in creating a new tree node.
static __nod __nwNod(int record)
{
	__nod temp = new __nod();
	temp.record = record;
	temp.Lft = temp.Rt = NILL;
	return temp;
}






// interchanging the two nodes.
// Creating a function that will surely swap the left and right nodes of the tree present at every k’th level. 
static void swapEvryKlevelUtil( __nod root, int level, int k)
{
// writing the base case for the tree.
	if (root == NILL ||
			(root.Lft == NILL && root.Rt==NILL) )
		return ;


		//If we have the current level +1 and then we have to swap the one present in the swap vector, then we will probably swap the left and right nodes. 
	if ( (level + 1) % k == 0)
		{
			__nod temp=root.Lft;
			root.Lft=root.Rt;
			root.Rt=temp;
		}


	// we have to do recursion for the left and right nodes.
	swapEvryKlevelUtil(root.Lft, level+1, k);
	swapEvryKlevelUtil(root.Rt, level+1, k);
}
// this function is mainly responsible for the recursive one.
// swapEvryKlevelUtil()
static void swapEveryKLevel(__nod root, int k)
{
	// call swapEvryKlevelUtil function with
	// initial level as 1.
	swapEvryKlevelUtil(root, 1, k);
}
// creating a brand-new utility method for the in-order traversal of the tree.
static void inorder(__nod root)
{
	if (root == NILL)
		return;
	inorder(root.Lft);
	Console.Write(root.record + " ");
	inorder(root.Rt);
}
// main code
public static void Main(String []args)
{
	/* 1
		/ \
	2 3
	/ / \
	4 7 8 */
	__nod root = __nwNod(1);
	root.Lft = __nwNod(2);
	root.Rt = __nwNod(3);
	root.Lft.Lft = __nwNod(4);
	root.Rt.Rt = __nwNod(8);
	root.Rt.Lft = __nwNod(7);


	int k = 2;
	Console.WriteLine("Before swap __nod :");
	inorder(root);


	swapEveryKLevel(root, k);


	Console.WriteLine("\nAfter swap __nod :" );
	inorder(root);
}
}

Output:

Given a Binary Tree Swap Nodes at K Height

Example 3)

// Writing a Java program that will help us exchange the nodes. 
class TFT
{
// Creating a binary tree node.
static class __nod
{
	int record;
	__nod Lft, Rt;
};
// creating a function that will help us in creating a new tree node.
static __nod __nwNod(int record)
{
	__nod temp = new __nod();
	temp.record = record;
	temp.Lft = temp.Rt = NILL;
	return temp;
}
// interchanging the two nodes.
// Creating a function that will surely swap the left and right nodes of the tree present at every k’th level. 
static void swapEvryKlevelUtil( __nod root, int level, int k)
{
// writing the base case for the tree.
	if (root== NILL ||
			(root.Lft==NILL && root.Rt==NILL) )
		return ;
	//If we have the current level +1 and then we have to swap the one present in the swap vector, then we will probably swap the left and right nodes. 
	if ( (level + 1) % k == 0)
		{
			__nod temp=root.Lft;
			root.Lft=root.Rt;
			root.Rt=temp;
		}
	// we have to do recursion for the left and right nodes.
	swapEvryKlevelUtil(root.Lft, level+1, k);
	swapEvryKlevelUtil(root.Rt, level+1, k);
}
// this function is mainly responsible for the recursive one.
// swapEvryKlevelUtil()
static void swapEveryKLevel(__nod root, int k)
{
	// call swapEvryKlevelUtil function with
	// initial level as 1.
	swapEvryKlevelUtil(root, 1, k);
}
// creating a brand-new utility method for the in-order traversal of the tree.
static void inorder(__nod root)
{
	if (root == NILL)
		return;
	inorder(root.Lft);
	System.out.print(root.record + " ");
	inorder(root.Rt);
}
// main code
public static void main(String args[])
{
	/* 1
		/ \
	2 3
	/ / \
	4 7 8 */
	__nod root = __nwNod(1);
	root.Lft = __nwNod(2);
	root.Rt = __nwNod(3);
	root.Lft.Lft = __nwNod(4);
	root.Rt.Rt = __nwNod(8);
	root.Rt.Lft = __nwNod(7);


	int k = 2;
	System.out.println("Before swap __nod :");
	inorder(root);


	swapEveryKLevel(root, k);


	System.out.println("\nAfter swap __nod :" );
	inorder(root);
}
}

Output:

Given a Binary Tree Swap Nodes at K Height

Example 4)

// Writing a Python program that will help us exchange the nodes. 
// Creating a binary tree node.
class __nod:


	# constructor to create a new __nod
	def __init__(self, record):
		self.record = record
		self.Lft = None
		self.Rt = None
// creating a function that will help us in creating a new tree node.
// interchanging the two nodes.
// Creating a function that will surely swap the left and right nodes of the tree present at every k’th level. 
def swapEvryKlevelUtil(root, level, k):
	
	# Base Case
	if (root is None or (root.Lft is None and
						root.Rt is None ) ):
		return
// writing the base case for the tree.
	//If we have the current level +1 and then we have to swap the one present in the swap vector, then we will probably swap the left and right nodes. 
	if (level+1)%k == 0:
		root.Lft, root.Rt = root.Rt, root.Lft
	
		// we have to do recursion for the left and right nodes.
	swapEvryKlevelUtil(root.Lft, level+1, k)
	swapEvryKlevelUtil(root.Rt, level+1, k)
// this function is mainly responsible for the recursive one.
	# swapEvryKlevelUtil
def swapEveryKLevel(root, k):
	
	# Call swapEvryKlevelUtil function with
	# initial level as 1
	swapEvryKlevelUtil(root, 1, k)
// creating a brand-new utility method for the in-order traversal of the tree.
def inorder(root):
	
	# Base Case
	if root is None:
		return
	inorder(root.Lft)
	print(root.record,end=" ")
	inorder(root.Rt)
// main code
"""
		1
		/ \
	2	 3
	/	 / \
	4	 7 8
"""
root = __nod(1)
root.Lft = __nod(2)
root.Rt = __nod(3)
root.Lft.Lft = __nod(4)
root.Rt.Rt = __nod(8)
root.Rt.Lft = __nod(7)


k = 2
print("Before swap __nod :")
inorder(root)


swapEveryKLevel(root, k)


print ("\nAfter swap __nod : ")
inorder(root)

Output:

Given a Binary Tree Swap Nodes at K Height

Example 5)

<script>


	// Writing a Javascript program that will help us exchange the nodes. 
	class __nod
	{
		constructor(record) {
		this.Lft = NILL;
		this.Rt = NILL;
		this.record = record;
		}
	}
// creating a function that will help us in creating a new tree node.
	function __nwNod(record)
	{
		let temp = new __nod(record);
		return temp;
	}
// interchanging the two nodes.
// Creating a function that will surely swap the left and right nodes of the tree present at every k’th level. 
	function swapEvryKlevelUtil(root, level, k)
	{
	// writing the base case for the tree.
		if (root== NILL ||
				(root.Lft==NILL && root.Rt==NILL) )
			return ;
//If we have the current level +1 and then we have to swap the one present in the swap vector, then we will probably swap the left and right nodes. 
		if ( (level + 1) % k == 0)
			{
				let temp=root.Lft;
				root.Lft=root.Rt;
				root.Rt=temp;
			}
	// we have to do recursion for the left and right nodes.
		swapEvryKlevelUtil(root.Lft, level+1, k);
		swapEvryKlevelUtil(root.Rt, level+1, k);
	}
// this function is mainly responsible for the recursive one.
	// swapEvryKlevelUtil()
	function swapEveryKLevel(root, k)
	{
		// call swapEvryKlevelUtil function with
		// initial level as 1.
		swapEvryKlevelUtil(root, 1, k);
	}
// creating a brand-new utility method for the in-order traversal of the tree.
	function inorder(root)
	{
		if (root == NILL)
			return;
		inorder(root.Lft);
		document.write(root.record + " ");
		inorder(root.Rt);
	}
	
	/* 1
		/ \
	2 3
	/ / \
	4 7 8 */
	let root = __nwNod(1);
	root.Lft = __nwNod(2);
	root.Rt = __nwNod(3);
	root.Lft.Lft = __nwNod(4);
	root.Rt.Rt = __nwNod(8);
	root.Rt.Lft = __nwNod(7);


	let k = 2;
	document.write("Before swap __nod :" + "</br>");
	inorder(root);


	swapEveryKLevel(root, k);


	document.write("</br>" + "After swap __nod :" + "</br>");
	inorder(root);


</script>

Output:

Given a Binary Tree Swap Nodes at K Height

Example 6)

// Two __nod in the BINARY_SEARCHTREE's swapped; correct the BINARY_SEARCHTREE.
#include <stdio.h>
#include <stdlib.h>


/* A binary tree __nod has record, pointer to Lft child
and a pointer to Rt child */
struct __nod
{
	int record;
	struct __nod *Lft, *Rt;
};


// A utility function to swap two integers
void swap( int* a, int* b )
{
	int t = *a;
	*a = *b;
	*b = t;
}


/* Helper function that allocates a new __nod with the
given record and NILL Lft and Rt pointers. */
struct __nod* __nwNod(int record)
{
	struct __nod* __nod = (struct __nod *)malloc(sizeof(struct __nod));
	__nod->record = record;
	__nod->Lft = NILL;
	__nod->Rt = NILL;
	return(__nod);
}


// This function does inorder traversal to find out the two swapped __nod.
// It sets three pointers, first, middle, and last. If the swapped __nod are
// adjacent to each other, then the first and middle contain the resultant __nod
// Else, first and last contain the resultant __nod
void correctBINARY_SEARCHTREEUtil( struct __nod* root, struct __nod** first,
					struct __nod** middle, struct __nod** last,
					struct __nod** prev )
{
	if( root )
	{
		// Recur for the Lft subtree
		correctBINARY_SEARCHTREEUtil( root->Lft, first, middle, last, prev );


		// If this __nod is smaller than the previous __nod, it's violating
		// the BINARY_SEARCHTREE rule.
		if (*prev && root->record < (*prev)->record)
		{
			// If this is the first violation, mark these two __nod as
			// 'first' and 'middle'
			if ( !*first )
			{
				*first = *prev;
				*middle = root;
			}


			// If this is the second violation, mark this __nod as last
			else
				*last = root;
		}


		// Mark this __nod as previous
		*prev = root;


		// Recur for the Rt subtree
		correctBINARY_SEARCHTREEUtil( root->Rt, first, middle, last, prev );
	}
}


// A function to fix a given BINARY_SEARCHTREE where two __nod is swapped. This
// function uses correctBINARY_SEARCHTREEUtil() to find out two __nod and swaps the
// __nod to fix the BINARY_SEARCHTREE
void correctBINARY_SEARCHTREE( struct __nod* root )
{
	// Initialize pointers needed for correctBINARY_SEARCHTREEUtil()
	struct __nod *first, *middle, *last, *prev;
	first = middle = last = prev = NILL;


	// Set the pointers to find out two __nod
	correctBINARY_SEARCHTREEUtil( root, &first, &middle, &last, &prev );


	// Fix (or correct) the tree
	if( first && last )
		swap( &(first->record), &(last->record) );
	else if( first && middle ) // Adjacent __nod swapped
		swap( &(first->record), &(middle->record) );


	// else __nod has not been swapped; the passed tree is really BINARY_SEARCHTREE.
}


/* A utility function to print Inorder traversal */
void printIn__Order(struct __nod* __nod)
{
	if (__nod == NILL)
		return;
	printIn__Order(__nod->Lft);
	printf("%d ", __nod->record);
	printIn__Order(__nod->Rt);
}


/* Driver program to test above functions*/
int main()
{
	/* 6
		/ \
	10 2
	/ \ / \
	1 3 7 12
	10 and 2 are swapped
	*/


	struct __nod *root = __nwNod(6);
	root->Lft	 = __nwNod(10);
	root->Rt	 = __nwNod(2);
	root->Lft->Lft = __nwNod(1);
	root->Lft->Rt = __nwNod(3);
	root->Rt->Rt = __nwNod(12);
	root->Rt->Lft = __nwNod(7);


	printf("Inorder Traversal of the original tree \n");
	printIn__Order(root);


	correctBinary_SearchTree(root);


	printf("\nInorder Traversal of the fixed tree \n");
	printIn__Order(root);


	return 0;
}

Output:

Given a Binary Tree Swap Nodes at K Height