Advantage and Disadvantage of Data Structure
Advantage and Disadvantage of Data Structure Hello friends, in today's post we will see advantage and disadvantage of data structure also need of data structure. So, let's start this.. What is the need of Data structure? As applications are getting complex and data rich, there are three common problems applications face now-a-days. Data Search: Consider an inventory of 1 million items of a store. If application is to search an item. It has to search item in 1 million items every time slowing down the search. As data grows, search will become slower. Processor Speed: Processor speed although being very high, falls limited if data grows to billion records. Multiple requests: As thousands of users can search data simultaneously on a web server, even very fast server fails while searching the data. To solve the above problems, data structures come to rescue. Data can be organized in a data structure in such a way that all items may not be required to be search and required data ca...