what is importance of data sturture in a programming
language?
Answers were Sorted based on User's Feedback
Answer / zubeir
Data structure is nothing but a way to organize and
manipulate any given set of data in a specific and reusable
format/structure hence simplifying the manipulation of data.
Some of the commonly and frequently used data structures
are Stack, Queue, List, Set, e.t.c. But this list is not
limited to what we see here, rather we can invent our own
as long as there is a definite structure and better
efficiency by using it than work with raw data.
Is This Answer Correct ? | 55 Yes | 15 No |
Answer / rajesh prasad sarkar
Data sturcture is the logical representation and
organization of data in the main memroy.Which is used to
organize data in such a way that the insertion
,deletion,searhing i.e manipulation of data is done with
minimal complexity , and that gives a efficiet performance
of our computing.
Is This Answer Correct ? | 34 Yes | 6 No |
Answer / dd
Data Structure is logical memory representation of
storage.In electronic terms insted of gate complications
storage is given in specific structure to store in Bit
format.With the identififcation and type.
Is This Answer Correct ? | 35 Yes | 19 No |
Answer / disha
Data structure is an organisation of data in which data can
be organised in many different ways
... logical
... mathematical
Is This Answer Correct ? | 27 Yes | 12 No |
Answer / bilal rehman
well data structure is basically a trade off between memory and speed. you have to sacrifice one thing for the efficiency of your program.
Data structures plays an important role in programming language, lets say you guys definitely use google or youtube or any social websites, in these websites if the proper data structure wouldn't have been implemented then the data you are trying to search would take you ages...
the thing i just learned from my teacher is that it changes the way of thinking of a programmer, it shortens up your difficult tasks and make it less complex..!!
Is This Answer Correct ? | 16 Yes | 1 No |
Answer / a. nahas
Regarding use of programming languages, Niclaus Wirth wrote
a book with title "Data Structure + Algorithm = Program".
Therefore one can consider a programming language
as "capabilities to describe data objects of some
structures PLUS cabpabilities to define algorithms. Also,
data structures are very important in the implementation of
programming languages.
Is This Answer Correct ? | 17 Yes | 5 No |
Answer / simrat
Data Structure is logical and mathematical model to store
data So there are basic benefits of data structures:
The memory space is properly used.It helps in data
protection and management.
When we use the data structures in a code then for any new
person it is easy to tell and make him understand the
code,because there is some prescribed method is used So it
enhance the code readability and code reusability.
Which is used to
organize data in such a way that the insertion
,deletion,searhing i.e manipulation of data is done with
minimal complexity , and that gives a efficiet performance
of our computing.
Is This Answer Correct ? | 13 Yes | 1 No |
Answer / neha khurana
Data structures play a central role in modern computer
science. Data structure enables an efficient storage of
data for an easy access. It enables to represent the
inherent relationship of the data in the real world. It
enables an efficient processing of data. It helps in data
protection and management.
Is This Answer Correct ? | 17 Yes | 7 No |
Answer / vitts
which is provides the mechanism of storing the data in
different ways. this optimizes searching and memory
usage. for example when searching is to be faster
datastructure of type linear type is used. if memory
utilization is more importance then lists data structure
used
Is This Answer Correct ? | 17 Yes | 8 No |
Answer / sumit singh
Logical representation and organization of data in the main
memory in other words it is a logical memory representation
of a storage.
Is This Answer Correct ? | 8 Yes | 1 No |
what is an array
What are the various compound assignment operators in c++?
What is the use of lambda in c++?
How does code-bloating occur in c++?
without if else statement can be written ah
In java a final class is a class that cannot be derived. How can you make a similar class in C++
Explain operator overloading.
What is the difference between reference type and pointers.
What is the outcome of cout< a) 16 b) 17 c) 16.5
What is the difference between "overloading" and "overridding"?
what do you mean by volatile variable?
How do you differentiate between overloading the prefix and postfix increments?