I'm Raash, computer science student. I have an assignment to create a c++ program to find all the possible mathematic equation with operators. Below shows the question, Given a set of numbers, for example {5, 3, 7, 3, and 11}. Find all the possible mathematic equation with operators such as +, - ,*, / in such a way that the equation will produce the given answer. For example, 5+7-3/3=11. Can give me idea how to start with the code. Is it like brute force algorithm ? I have no idea how to interchange the operators to create the possible equation. I'm not asking for full solution, just an idea how to start the coding. Kindly needs your help.
