Link to home
Start Free TrialLog in
Avatar of ashwindurga
ashwindurga

asked on

converting infix to postfix and evaluating it (also checking validity) using singly linked lists

i want to convert a infix expression to post fix notaion. it should also check the validity of the expression(e.g 2(34+) is not valid)... it should also evaluate the expression. all this should be done using only singly linked lists.
Avatar of Avik Dasgupta
Avik Dasgupta
Flag of United States of America image

Please specify the different operators you want to work with (including the unary ones) and definitely the target programming languge (eg C, C++ etc).
Avatar of ashwindurga
ashwindurga

ASKER

the operators can be unary(only +,-,* and / ) and the programming language should be only C .... to make it simpler, the numbers can be taken to be single digit numbers.
ASKER CERTIFIED SOLUTION
Avatar of ozo
ozo
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial