what is importance of data sturture in a programming
language?
Answer Posted / 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 |
Post New Answer View All Answers
What is the rule of three?
Define pre-condition and post-condition to a member function in c++?
What is auto type c++?
Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort
Write a function to perform the substraction of two numbers. Eg: char N1="123", N2="478", N3=-355(N1-N2).
Explain friend class?
What is endianness?
Differentiate between a template class and class template in c++?
Can we make any program in c++ without using any header file and what is the shortest program in c++.
Where can I run c++ program?
What do you mean by overhead in c++?
Who calls main function?
What is the basic structure of c++ program?
What is the error in the code below and how should it be corrected?
Does c++ have a hash table?