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
What is the purpose of extern storage specifier?
Explain the difference between new() and malloc() in c++?
What is difference between c++ and c ++ 14?
How compile and run c++ program in turbo c++?
What will happen if a pointer is deleted twice?
What are compilers in c++?
Write about the stack unwinding?
When you overload member functions, in what ways must they differ?
What does extern mean in a function declaration in c++?
What do you mean by persistent and non persistent objects?
How do c++ struct differs from the c++ class?
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples
Why is "using namespace std;" considered bad practice?
write a corrected statement so that the instruction will work properly. if (4 < x < 11) y = 2 * x;
What are the various oops concepts in c++?