Ecosyste.ms: Repos

An open API service providing repository metadata for many open source software ecosystems.

GitHub topics: infixtopostfix

ashwinravishankar/Calculated-Expression

Java program that reads an arithmetic expression, performs the arithmetic in the expression, and outputs the answer. The expression will be in infix notation, which is the way we normally write them, the program converts the expression to postfix form, performs the calculation on the converted postfix form and outputs the answer. The program will require two steps, both involving the use of a stack data structure: (1) convert the infix expression to postfix, and (2) process the postfix expression by computing it and output the result.

Language: Java - Size: 5.86 KB - Last synced: 13 days ago - Pushed: about 6 years ago - Stars: 0 - Forks: 0

cristiancristea00/bigint-exp-evaluator

BigInteger expression evaluator using shunting-yard algorithm

Language: C++ - Size: 45.9 KB - Last synced: 15 days ago - Pushed: over 2 years ago - Stars: 0 - Forks: 0

reshmaharidhas/Infix-To-Postfix-Converter

A desktop application to convert infix expression to postfix expression built using Tkinter and Python

Language: Python - Size: 25.4 KB - Last synced: 16 days ago - Pushed: 17 days ago - Stars: 0 - Forks: 0

BaseMax/Infix2Postfix

This is a simple infix to postfix converter written in JavaScript. It is a simple project that I made to show other students how they can easily design this type of program and how they can use it to solve their problems.

Language: JavaScript - Size: 29.3 KB - Last synced: 30 days ago - Pushed: over 1 year ago - Stars: 0 - Forks: 1

Vishruth-S/InfixToPostfix_Converter

An application to convert Infix expression to Postfix form with steps displayed.

Language: JavaScript - Size: 1.75 MB - Last synced: 23 days ago - Pushed: 23 days ago - Stars: 21 - Forks: 2

navidadelpour/InfixToPostfix

Simple java InfixToPostfix program

Language: Java - Size: 1.25 MB - Last synced: 22 days ago - Pushed: 4 months ago - Stars: 0 - Forks: 0

junaidsahmed/InfixToPostfixAPI

Infix To PostFix Conveter

Language: Java - Size: 64.5 KB - Last synced: 5 months ago - Pushed: about 2 years ago - Stars: 0 - Forks: 0

Tvkqd/Infix-to-Posfix-ExpressionCaculator

Calculate infix arithmetic expression

Language: C++ - Size: 11.7 MB - Last synced: 5 months ago - Pushed: about 4 years ago - Stars: 0 - Forks: 0

alicanipek/Infix-to-postfix

infix to postfix conversion

Language: Haskell - Size: 2.93 KB - Last synced: 7 months ago - Pushed: about 6 years ago - Stars: 0 - Forks: 0

ZaidMohsin457/Infix

This repository contains the code that is made form two different algorithms. First one is to convert Infix to Postfix and the second one is used to solve that Postfix expression and get a single result.

Language: C++ - Size: 2.93 KB - Last synced: 7 months ago - Pushed: 7 months ago - Stars: 0 - Forks: 0

reesdela/InfixtoPosfix

a program i made for data structure class a while back.

Language: C++ - Size: 3.91 KB - Last synced: 7 months ago - Pushed: over 5 years ago - Stars: 0 - Forks: 0

shrvn8704/infixtopostfix_c

A c program to convert infix expresson to postfix in C.

Language: C - Size: 20.5 KB - Last synced: 8 months ago - Pushed: over 1 year ago - Stars: 0 - Forks: 0

madhu-java/calculator

smart calculator, remembers previous values, converts expressions o postfix and evaluates

Language: Java - Size: 101 KB - Last synced: 9 months ago - Pushed: over 3 years ago - Stars: 0 - Forks: 0

H-K-R/CSE3142-Compiler-Design-Lab

This repository will contain codes of " Compiler Design (CSE3142) ".

Language: C++ - Size: 187 KB - Last synced: 12 months ago - Pushed: over 1 year ago - Stars: 12 - Forks: 0

senavs/MathExpressionCompiler

:heavy_check_mark: Functions that show how compilers evaluate mathematical expressions

Language: Python - Size: 6.84 KB - Last synced: about 1 year ago - Pushed: almost 5 years ago - Stars: 2 - Forks: 0

shubhamistic/data-structures

Menu based algorithms for some useful Linear and Non-Linear Data Structures written in C programming language.

Language: C - Size: 24.4 KB - Last synced: about 1 year ago - Pushed: over 1 year ago - Stars: 0 - Forks: 0

mustafashykh/compiler_assignment_codes

Language: C++ - Size: 7.81 KB - Last synced: about 1 year ago - Pushed: over 4 years ago - Stars: 1 - Forks: 0

adianand13/DataStructures

DSA practise in C

Language: C - Size: 44.9 KB - Last synced: about 1 year ago - Pushed: almost 6 years ago - Stars: 0 - Forks: 0

mrinalmayank7/data_structures

This Repository contains the core concepts and implementation of Data Structures & Algorithms which include arrays, linked list, queues , stacks ,binary trees, BST, AVL Trees, sorting techniques and general operations

Language: C++ - Size: 117 KB - Last synced: 12 months ago - Pushed: almost 2 years ago - Stars: 5 - Forks: 0

SAZZAD-AMT/Infix-to-Prefix-to-Postfix-Conversion-Assembly-code-by-c-program

While we use infix expressions in our day to day lives. Computers have trouble understanding this format because they need to keep in mind rules of operator precedence and also brackets. Prefix and Postfix expressions are easier for a computer to understand and evaluate. Given two operands a and b and an operator \odot , the infix notation implies that O will be placed in between a and b i.e (a * b) . When the operator is placed after both operands i.e ab\odot , it is called postfix notation. And when the operator is placed before the operands i.e (* a b) , the expression in prefix notation. Given any infix expression, we can obtain the equivalent prefix and postfix format.

Language: C++ - Size: 433 KB - Last synced: about 1 year ago - Pushed: about 2 years ago - Stars: 3 - Forks: 0

ChoudharyRamesh/M_Implementation

Learning ...

Language: C++ - Size: 1.95 KB - Last synced: about 1 year ago - Pushed: almost 2 years ago - Stars: 1 - Forks: 0

YewoMhango/AndroidCalculator

Native android calculator app in Kotlin

Language: Kotlin - Size: 424 KB - Last synced: 12 months ago - Pushed: almost 2 years ago - Stars: 1 - Forks: 0

ManojPennada/Data-Structures-in-C

Data Structure in C

Language: C - Size: 18.6 KB - Last synced: about 1 year ago - Pushed: over 1 year ago - Stars: 3 - Forks: 0

Akashtiwari123/C-programs

All C language programs used in curriculum.

Language: C - Size: 8.79 KB - Last synced: about 1 year ago - Pushed: over 6 years ago - Stars: 1 - Forks: 2

mrchowmein/Java-Infix-To-PostFix-Calculator

Java implementation of an Infix to Postfix Calculator with 3 stacks

Language: Java - Size: 3.91 KB - Last synced: about 1 year ago - Pushed: over 6 years ago - Stars: 0 - Forks: 0

jaimik64/django-infixConverter

Django Website to Convert infix Expression to Postfix/Prefix Expression. Also Evaluate Postfix/Prefix Expression.

Language: HTML - Size: 22.5 KB - Last synced: about 1 year ago - Pushed: almost 3 years ago - Stars: 0 - Forks: 0

etrian-dev/infix-to-postfix

A simple infix to postfix expressions conversion program, written in C

Language: C - Size: 11.7 KB - Last synced: about 1 year ago - Pushed: over 3 years ago - Stars: 0 - Forks: 0

anserwaseem/infix-to-postfix

Stack implementation with conversion of Infix expression to Postfix.

Language: C++ - Size: 3.91 KB - Last synced: about 1 year ago - Pushed: almost 4 years ago - Stars: 1 - Forks: 0

Renddslow/mathd

A small (1.78KB) parser to evaluate infix notation to values (without using eval).

Language: TypeScript - Size: 48.8 KB - Last synced: 13 days ago - Pushed: over 3 years ago - Stars: 0 - Forks: 0

Pranay2050/infix2postfix

C program to convert an infix expression in the postfix expression

Language: C - Size: 1.95 KB - Last synced: 11 months ago - Pushed: over 4 years ago - Stars: 0 - Forks: 0

pruth17/inFixToPostFix

This program converts infix expressions to postfix expressions using stacks.

Language: Java - Size: 3.91 KB - Last synced: about 1 year ago - Pushed: over 4 years ago - Stars: 0 - Forks: 0

shashankchandak/InfixToPostfix

Language: C++ - Size: 10.7 KB - Last synced: about 1 year ago - Pushed: almost 5 years ago - Stars: 0 - Forks: 0

iluvjava/DiscordBot-PurpleSmart

This is a bot I made, it's just for fun and learning c# on the way.

Language: C# - Size: 4.85 MB - Last synced: about 1 year ago - Pushed: about 5 years ago - Stars: 1 - Forks: 0

AlbinoB/Infix-to-postfix

Converting infix expression to postfix

Language: C++ - Size: 2.93 KB - Last synced: about 1 year ago - Pushed: over 5 years ago - Stars: 0 - Forks: 0

meysam81/Arithmetic-term

Back from the college days, an implementation of arithmetic terms and their prefix, infix & postfix traverse

Language: C++ - Size: 4.2 MB - Last synced: 15 days ago - Pushed: almost 6 years ago - Stars: 0 - Forks: 0