Floyd Warshall Algorithm Example Floyd warshall algorithm example in C or Data structure is used to find the all pairs shortest path it means shortest path among all the vertices pairs in a given weighted graph. In this tutorial we have explained the floyd warshall algorithm example. Frequently asked Questions Some frequently asked questions are […]
Data Structure
Queue Data Structure
Queue Data Structure Queue Data Structure follow the FIFO principle. In this tutorial we will learn about basic introduction of Queue, different operations on Queue and Array Implementation of Queue is also explained. After the study of this tutorial students can easily answer the following frequently asked questions based on queue. Students also will be […]
Deletion in Doubly Linked List from Beginning
Deletion in Doubly Linked List from Beginning Deletion in Doubly Linked List is an important operation. In this tutorial we will understand how can we delete a node in doubly linked list. Questions based on doubly linked list are asked in University examination. Doubly Linked List Deletion can be performed in following cases. (1) Deletion […]
Insertion at Beginning in Circular Singly Linked List
Insertion at Beginning in Circular Singly Linked List In Previous Tutorial we have already discussed and explained about how to create and display a Circular Singly Linked List in Data Structure in C. In this tutorial we will learn how to insert a new node at the beginning of the Circular Singly Linked List. To […]
Circular Linked List in Data Structure
Circular Linked List in Data Structure using C In this tutorial we will learn about the basic concepts of Circular Linked List in Data Structure using C. Content covered in this tutorial includes the introduction of Circular Linked List, Creating and displaying a Circular Linked List. This tutorial will be useful for the computer science […]
Application of Queue in Data Structure
Application of Queue in Data Structure Application of Queue in Data Structure belong to many real world situation. As we know that queue is a First in First Out Data Structure. Here in this tutorial we are going to discuss various applications of queue in data structure. A data structure is a way of storing, […]
Char Array in C
Char Array in C Char array in C is used for the string type data. Char array in c means character array in c programing. In previous tutorial we have learned some basic concepts of array. In this tutorial we will mainly learn about the character array. Questions based on string and character array are […]
Prim’s Algorithm to Find Minimum Cost Spanning Tree
Prim’s Algorithm to find MST Prim’s algorithm is a greedy algorithm used to find the minimum spanning tree in a given Graph. Problem based on Prim’s algorithm is mostly asked in GATE(CS/IT) Exam. Students preparing for GATE and UGC NET exam. We have explained the Prim’s Algorithm to find minimum cost spanning tree with Example […]
Heap Data Structures
What is Heap Data Structures ? Heap Data Structures is a Tree Data Structure in which tree is a Complete Binary Tree. Explanation of Complete Binary Tree with example is explained in next section of this tutorial. Questions based on Heap are generally asked in GATE(CS/IT) and UGC NET exam. Students are also suggested to […]
Tree Traversal in Data Structure
Tree Traversal in Data Structure Tree traversal in data structure is an important topic from exam point of view. There are three techniques of traversing a tree in Data Structure. These tree traversing techniques in Data Structure are in order traversing, pre order traversing and post order traversing techniques. Sometime questions based on tree traversal […]
Binary Search Tree Tutorial
Binary Search Tree Tutorial A Binary Search Tree is a special type of Binary Tree in which every node has a key or value associated with it which is less than the key of each node in it’s right sub tree and greater than the key of node in it’s left sub tree. Questions based […]
Binary Tree and its Types in Data Structure
Binary Tree and its Types in Data Structure In this tutorial we will learn about Binary Tree and its Types in data structure. Every type of binary tree has it’s specific characteristics. We can identify the type of tree on the basis of this characteristics. Some time types of binary tree based multiple choice questions […]
Types of Data Structure with Example
Types of Data Structure Different types of data structure with example are discussed here in this tutorial. Data Structure is one of the fundamental subject of Computer Science and Engineering Branch. Interview Questions from Data Structure are generally asked in every technical interview. In this tutorial we will learn about Data Structure definition, advantages of […]
Top 100 Data Structures and Algorithms Interview Questions [ 2021]
Data Structures and Algorithms Interview Questions Data Structure is an important subject for GATE(CS) and UGC NET Exam. Top 100 Data structures and algorithms interview questions are also asked in Technical Interview of most of the software companies. In this post we are going to tell you about some ds algo interview questions and sorting […]
Array Data Structure in C
Array Data Structure in C Array is a linear Data Structure. A computer science students should have the knowledge of array data structure for developing the project. Array Data Structure is widely used data structure in developing the various real world applications and system software. Questions based on Array are asked in GATE and UGC […]
Stack Data Structure
Stack Data Structure Stack Data Structure plays a very important role because of it’s real world applications. A computer science student should know about stack, various operations of stack and it’s application. Stack is also an important topic for GATE(CS/IT) and UGC NET exam. Questions on Stack are asked in GATE and UGC NET exam […]