a)Unit 1Define Data Structures. With the aid of a neat diagram describe the classification of data structures.
Define Data Structures. With the aid of a neat diagram describe the classification of data structures.
b)Unit 1What is asymptotic analysis? Explain Big-oh notation. Analyse and write the running time complexity of the following function.
```c
A(){
int i, j, k, n;
for(i = 1; i <= n; i++)
for(j = 1; j * j <= n; j++)
for(k = 1; 2 * k <= n; k++)
printf("*");
}
```
What is asymptotic analysis? Explain Big-oh notation. Analyse and write the running time complexity of the following function. ```c A(){ int i, j, k, n; for(i = 1; i <= n; i++) for(j = 1; j * j <= n; j++) for(k = 1; 2 * k <= n; k++) printf("*"); } ```