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 …