Data Structure Theory
A data structure is a specialized format for organizing and storing data in memory. General data structure types include array, file, record, table, tree, graph and so on. An algorithm is a concise specification of a method for solving a problem. A data structure can be viewed as consisting of a set of algorithms for performing operations on the data it stores. In Data Structure tutorial you will learn several data structures and algorithms.
Data Structure
Data Structure is a way of storing da...
Abstract Data Types
A set of data values and associated operations that are pre...
Stacks
A stack is a list of elements in which an element may be in...
Queues
A queue is a linear list of elements in which dele...
Linked Lists
A linked list is a complex data structure, especially usefu...
Linear Search
Search each record of the file one at a time until finding ...
Sorting
Let A be the list of n elements A1, A2, … An in memo...
Hashing
The search time of each algorithm depend on the number n of...
Trees
Trees are the type of nonlinear data structure. A ...
Graphs
A graph is a set of vertices and edges...
|