Skip to content

Instantly share code, notes, and snippets.

View RonMehta's full-sized avatar

Ronak Mehta RonMehta

  • pune
View GitHub Profile
//Problem Statement
//Reverse Polish notation is a mathematical notation in which every operator follows all of it's operands.
//
//Implement a Reverse Polish Notation calculator, with the following operations :
//
//: binary operator equivalent to(e.g.)
// : unary operator equivalent to(e.g.)
// : ternary operator equivalent to(e.g.)
//
@RonMehta
RonMehta / LinkedList.c
Created April 29, 2018 00:57
DataStructures
//#include "..\stdafx.h"
#include <stdlib.h>
#include <stdio.h>
struct Node{
int data;
struct Node* next;
};