Given an arithmetic expression in in-fix notation. Write code to convert that algorithm in corresponding post-fix notation. For example: Infix Postfix ------ -------- a+b ab+ […]
Given arrival and departure times of all trains for a particular railway station, write code to find the minimum number of platforms required on that […]
Given two arrays of integers, write a code to check if one is permutation (arranging the same numbers differently) of elements present in the other. […]