Single Linked List

nextNode pointer of last node will always contain NULL.Example : Node Representation Operations of Singly Linked List There are following operations ,we can apply on singly linked list : Note : For Complete Explanation of Singly Linked List Operation ,please Read More …

What is Linked List?

Every node having the data element and address of the next node through pointer. Data will contain the information stored by the node.and Address will contain the address of the next node. Address representation Here Node-1 contain data element ‘A’ Read More …

Dynamic Array

Dynamic Array is the extended version of normal array , which is growable or resizable.it is an random access type array.We can implement it by fixed size ,and if more memory is required then create the new array and double Read More …

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 …