what is importance of data sturture in a programming
language?
Answer Posted / 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 |
Post New Answer View All Answers
Write about the members that a derived class can add?
How can you create a virtual copy constructor?
What are default parameters? How are they evaluated in c++ function?
Are there interfaces in c++?
Explain how overloading takes place in c++?
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
Why is c++ still popular?
What is a constant? Explain with an example.
Can we define function inside main in c++?
You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()
What is an iterator class in c++?
When are exception objects created?
What is constant in c++ with example?
Does c++ support exception handling?
what is oops and list its features in c++?