EncyclopediaABC   DEFG   HIJK   LMNO   PQRS   TUVW   XYZOther
 
Home / Encyclopedia / D

Data structure

In computer science, a data structure is a particular way of storing and organizing data in a computer so that it can be used efficiently.

Different kinds of data structures are suited to different kinds of applications, and some are highly specialized to specific tasks. For example, B-trees are particularly well-suited for implementation of databases, while compiler implementations usually use hash tables to look up identifiers.

Data structures are used in almost every program or software system. Specific data structures are essential ingredients of many efficient algorithms, and make possible the management of huge amounts of data, such as large databases and internet indexing services. Some formal design methods and programming languages emphasize data structures, rather than algorithms, as the key organizing factor in software design.

Basic principles

Data structures are generally based on the ability of a computer to fetch and store data at any place in its memory, specified by an address — a bit string that can be itself stored in memory and manipulated by the program. Thus the record and array data structures are based on computing the addresses of data items with arithmetic operations; while the linked data structures are based on storing addresses of data items within the structure itself. Many data structures use both principles, sometimes combined in non-trivial ways (as in XOR linking).

Basic Types

There are three basic types of data structures:
Linear/Branching — there is only one direction to go, yet different paths can be taken. This structural form is hierarchical and organized.

Nonlinear/Matrix — there are many directions to go. One can enter at any point and move to any other point at any time. All directions and points can be equally reached.

Random/Schizo — all directions are equal and unequal at the same time. This structure is more theoretical, and represents neurological and psychological depths. A computer or algorithm can never truly represent this structure (the human mind is far too complex).

Abstract data structures

The implementation of a data structure usually requires writing a set of procedures that create and manipulate instances of that structure. The efficiency of a data structure cannot be analyzed separately from those operations.

This observation moves the theoretical concept of an abstract data type, a data structure that is defined indirectly by the operations that may be performed on it, and the mathematical properties of those operations (including their space and time cost).

Language support

Assembly languages and some low-level languages such as BCPL generally lack support for data structures. Many high-level programming languages, on the other hand, have special syntax or other built-in support for certain data structures, such as vectors (one-dimensional arrays) in the C programming language, multi-dimensional arrays in Pascal, linked lists in Common Lisp, and hash tables in Perl. Many languages also provide basic facilities such as references and the definition record data types, that programmers can use to build arbitrarily complex structures.

Most programming languages feature some sort of library mechanism that allows data structure implementations to be reused by different programs. Modern programming languages usually come with standard libraries that implement the most common data structures. Examples are the C++ Standard Template Library, the Java Collections Framework, and Microsoft's .NET Framework.

Modern languages also generally support modular programming, the separation between the interface of a library module and its implementation. Some provide opaque data types that allow clients to hide implementation details and pictures. Object-oriented programming languages, such as C++ and Java, use classes for this purpose.

Source: Wikipedia

Translation

The phrase "Data structure" occurs as such in the following languages: English, Simple English.

Translation(s) in other languages: Arabic: بنية البيانات, Asturian: Estructura de datos, Bosnian: Struktura podataka, Danish: Datastruktur, German: Datenstruktur, Spanish: Estructura de datos, Persian: ساختمان داده‌ها, French: Structure de données, Korean: 자료 구조, Indonesian: Struktur data, Icelandic: Gagnagrind, Italian: Struttura dati, Hebrew: מבנה נתונים, Latvian: Datu struktūra, Hungarian: Adatszerkezet, Malayalam: ഡാറ്റാ സ്ട്രക്‌ച്ചര്‍, Malay: Struktur data, Dutch: Datastructuur, Japanese: データ構造, Norwegian (Bokmål): Datastruktur, Polish: Struktura danych, Portuguese: Estrutura de dados, Romanian: Structură de date, Russian: Структура данных, Slovak: Údajová štruktúra, Slovenian: Podatkovna struktura, Serbian: Структура података, Finnish: Tietorakenne, Swedish: Datastruktur, Thai: โครงสร้างข้อมูล, Turkish: Veri yapıları, Ukrainian: Структури даних, Vietnamese: Cấu trúc dữ liệu, Chinese: 数据结构.


show options »   

Search inside:










  More articles in: