This commit is contained in:
Miloslav Ciz 2024-03-19 16:01:03 +01:00
parent 4533fde60c
commit 8fbedc9460
39 changed files with 1945 additions and 1823 deletions

View file

@ -1,6 +1,6 @@
# Data Structure
*Not to be confused with [data type](data_type.md).*
*Not to be [confused](often_confused.md) with [data type](data_type.md).*
Data structure refers to a any specific way in which [data](data.md) is organized in computer memory, which often comes with associated efficient operations on such data. A specific data structure describes such things as order, relationships (interconnection, hierarchy, ...), helper values ([checksum](checksum.md), [indices](index.md), ...), formats and [types](data_type.md) of parts of the data. [Programming](programming.md) is sometimes seen as consisting mainly of two things: design of [algorithms](algorithm.md) and data structures these algorithm work with.