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
How to give an alternate name to a namespace?
What is a string example?
What are dynamic type checking?
What language is a dll written in?
What are maps in c++?
What is a literal in c++?
How do I download c++?
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300
Why was c++ made?
Why c++ is the best language?
What are default parameters? How are they evaluated in c++ function?
What is token c++?
Define pure virtual function?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
What are c++ tokens?