Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
~490 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags
2 Posted Topics
Is it possible to convert a postfix expression to prefix expression using only recursion? If possible what's the algorithm?
1. Find the remainder of the decimal number(let it be a) by using mod n (n=2,8,16 or any base in general), a%n will give you the least significant digit of respective category(bin, octal or hex). 2. Divide the number by n, go to step 1 with the quotient as the …
The End.
programmer007