what is data structure.in linear and non linear data
structures which one is better?Explain
Answers were Sorted based on User's Feedback
Answer / ashi
A data structure is arrangement of data in a computer's
memory even disk storage linear data is better than non liner
| Is This Answer Correct ? | 15 Yes | 3 No |
Answer / rama krishna sidhartha
A data structure is a collection or organization of the data
in computer memory
(or)
A data structure is arrangement of data in a computer's
memory or even disk storage.
In linear and non-linear data structures, linear data
structure is better than non linear data structure. Because
in linear data structure, the elements of the data structure
are represented in the sequence. Whereas, in non linear data
structure is not in sequence.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / some guy
++linear and non-linear data structures have their own
significance ......which is better then the other is depend
on the application of data structure ...
for eg.
linear search vs. BST(binary search tree)
| Is This Answer Correct ? | 4 Yes | 1 No |
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
Explain what are header files and explain what are its uses in c programming?
control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
What is an operator?
How do I read the arrow keys? What about function keys?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
Explain how do you override a defined macro?
write a programme that inputs a number by user and gives its multiplication table.
What is a program flowchart?
Explain enumerated types.
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }