Enroll in Selenium Training

In programming, a data structure is a particular way of storing and manipulating the internal data of a computer program. There are many data structures, and you probably have used some of them.

For example, an array of int is a data structure that consume n entries in memory, where n is the size of the array. Each entry stores an int and can be accessed or modified via their index.

As the way to store and manipulate internal data mostly determines how much resources and time the application consumed to carry out its tasks, choosing an appropriate data structures can boost the performance of your program and, quite often, reduces implementation efforts.

Therefore, an important part of programming is to determine the right data structures for a given problem. In the coming articles, we will learn how to use and analyze common data structures in Java. Java Collections

Exception Handling
Exception Handling
Previous Article
Data Structures - ArrayList
Data Structures - ArrayList
Next Article
Lakshay Sharma
I’M LAKSHAY SHARMA AND I’M A FULL-STACK TEST AUTOMATION ENGINEER. Have passed 16 years playing with automation in mammoth projects like O2 (UK), Sprint (US), TD Bank (CA), Canadian Tire (CA), NHS (UK) & ASOS(UK). Currently, I am working with RABO Bank as a Chapter Lead QA. I am passionate about designing Automation Frameworks that follow OOPS concepts and Design patterns.
Reviewers
Virender Singh's Photo
Virender Singh

Similar Articles

Feedback