Mathematical Notation in Data Structure YASH PAL, December 10, 2022May 28, 2024 Mathematical Notation in Data Structure – First of all we will consider various types of notations for writing mathematical expressions. there is the following set of operations.Symbol UsedOperation PerformedPrecedence^ (Exponention)PowerHighest* (Asterisk)MultiplicationNext Highest/ (Slash)DivisionNext Highest+ (Plus)AdditionLowest– (Hyphen)SubtractionLowest Note – In Some cases, we also use the symbol $, ** or ↑ as a power of a number. for simplicity, we will assume that a given expression contains no unary operation. we also assume that the operations on the same level of precedence are performed from left to right except for ^ which works from right to left. algorithms data structures stack DSAnotationstack