Data structure is the science of storing data in a computer so that it can be used efficiently. Often a carefully chosen data structure will allow a more efficient algorithm to be used. The choice of the data structure often begins from the choice of an abstract data structure. A well-designed data structure allows a variety of critical operations to be performed on using as little resources, both execution time and memory space, as possible.
Different kinds of data structures are suited to different kinds of applications, and some are highly specialized to certain tasks. For example, B-trees are particularly well-suited for implementation of databases, while routing tables rely on networks of machines to function.
In the design of many types of programs, the choice of data structures is a primary design consideration, as experience in building large systems has shown that the difficulty of implementation and the quality and performance of the final result depends heavily on choosing the best data structure. After the data structures are chosen, the algorithms to be used often become relatively obvious. Sometimes things work in the opposite direction – data structures are chosen because certain key tasks have algorithms that work best with particular data structures. In either case, the choice of appropriate data structures is crucial.
This insight has given rise to many formalized design methods and programming languages in which data structures, rather than algorithms, are the key organizing factor. Most languages feature some sort of module system, allowing data structures to be safely reused in different applications by hiding their verified implementation details behind controlled interfaces. Object-oriented programming languages such as C++ and Java in particular use objects for this purpose.
Since data structures are so crucial to professional programs, many of them enjoy extensive support in standard libraries of modern programming languages and environments, such as C++’s Standard Template Library, the Java API, and the Microsoft .NET framework.
The above discussion aims at only making you understand how critical the proper understanding of data structures is. The implementation and demonstration of various data structures has been done by either C or C++.
Data Structure Through C
Module – 1: Built-in Data Structure |
||
Abstract Data Type
|
|
|
Top | ||
Module – 2: Linear Data Structure |
||
Linked Lists
Stacks
|
Recursion
Queues
|
|
Top | ||
Module – 3: Non-Linear Data Structure |
||
Trees
|
Graphs
|
|
Top | ||
Module – 4: Sorting and Searching |
||
Sorting
Searching
|
File Structure And Storage Management
|
|
Top |