DSA Assignment
1. Why do we need Asymptotic notations? Explain the different Asymptotic
notations with definitions and examples.
2. Write a function to convert the given infix expression into the postfix form
3. Write a function to evaluate the postfix expression
4. Write a function to sort given array using bubble sort
5. Write a function to sort given array using insertion sort
6. Write a function to insert the new data before the given data
7. Write a function to insert the new data in the already sorted linked list
8. Write push and pop operations of a stack.