One Dimensional Array(1-D)

When Array’s dimensionality is one, this types of array comes under the 1-D Array Category. One Dimensional Array or 1-D array contain only single row but more than one column.This is an Linear array. Declaration & Initialization of 1-D Array Read More …

What is Array?

Array Indexing Generally almost Programming Language support Zero-Based Indexing in their implementation.Like C ,C++, JAVA , C# and many more. index is use to access the data element by their position. means if array name is ABC ,then ABC[2] means Read More …

Data Types

Data types define the structure of data in programming language.and also it is an attribute of data. Data types are generally associated with variables.Data type decrease the coding stuff in system level.Example : integer , character, string , bool ,float Read More …

What is Data Structure?

Below is the list of Data Structure which are generally designed upon the primitive and abstract Data Types. Types of Data Structure Depending upon the element Structure , data structure is categorize into two parts : Linear Data Structure In Read More …

Topological Sort

Note : To understand Topological Sort ,we recommend you,please first refer Graph Data Structure and Graph Algorithm Section. Working Process of Topological Sort We have to follow the below step to sort the graph. Suppose a Graph G(V,E) where V Read More …

Comparison of BFS and DFS

The Big advantage of DFS(Depth First Search) is lower memory consuption. and BFS(Breadth Search Algorithm) use more than DFS.because DFS don’t store the information of all the child.But in BFS we need to store.But still both algorithm depends more on Read More …

Depth First Search(DFS)

Procedure Initialize an Graph G(V,E).and create an empty Stack.Start from any Vertex(Node). Now Apply Below rules : Rule-1 : Check selected Node is already visited or not. if node id already visited then directly go to the Rule-3.Rule-2 : Marks selected Node Read More …

Breadth First Search(BFS)

Procedure Initialize an Graph G(V,E).and create an empty Queue.Start from any Vertex(Node). Now Apply Below rules : Rule-1 : Check selected Node is already visited or not. if node id already visited then directly go to the Rule-3.Rule-2 : Marks Read More …

What is Graph Algorithm?

Note : Here we will not discuss about the Graph Data Structure, This chapter is designed for Algorithm which is based upon the Graph Data Structure.For Graph Data Structure you can refer Graph Chapter in Data Structure Section. Graph Algorithms Read More …