Introduction to ArrayList

What is ArrayList? ArrayList is a dynamic data structure from the Java Collection Framework. It is a widely used data structure in Java developer life. For example, as a developer you are required to fulfill the requirements such as “collecting items into cart”, “delete multiple emails from your inbox”, “multiple…

Continue reading

Introduction to LinkedList

LinkedList is one of the linear Data Structure. LinkedList is a collection of multiple nodes and they are connected using pointer (reference) address. Nodes (elements) are stored in a non-contiguous memory location which means different memory locations. LinkedList is of three types such as Singly-linkedList, Doubly LinkedList, and Circular LinkedList….

Continue reading