Skip to content

Instantly share code, notes, and snippets.

View Arman92's full-sized avatar
⚛️
Reacting

Arman Safikhani Arman92

⚛️
Reacting
View GitHub Profile
@vaishaks
vaishaks / postfixtoprefix.cpp
Created August 31, 2012 13:38
C++ code to convert postfix expression to prefix
#include <iostream>
#include <cstring>
#include <stack>
#include <algorithm>
#define flag '#'
using namespace std;
bool isOperator(char c)
{