[PR #869] [MERGED] feat: add infix to postfix converter algorithm #1379

Open
opened 2026-01-29 15:19:54 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/869
Author: @kumaryash18
Created: 10/6/2021
Status: Merged
Merged: 10/17/2021
Merged by: @Panquesito7

Base: masterHead: expression


📝 Commits (10+)

📊 Changes

2 files changed (+165 additions, -0 deletions)

View changed files

📝 DIRECTORY.md (+1 -0)
conversions/infix_to_postfix2.c (+164 -0)

📄 Description

Description of Change

Added a program to convert an infix expression to postfix expression in misc

References

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • PR title follows semantic commit guidelines
  • I acknowledge that all my contributions will be made under the project's license.

Notes:

A program in C to convert an infix expression to postfix expression


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/869 **Author:** [@kumaryash18](https://github.com/kumaryash18) **Created:** 10/6/2021 **Status:** ✅ Merged **Merged:** 10/17/2021 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `expression` --- ### 📝 Commits (10+) - [`c02dba0`](https://github.com/TheAlgorithms/C/commit/c02dba0fa0df3a1ce4d49fd6c281a136974486d6) add infix to postfix converter algorithm - [`1d0d712`](https://github.com/TheAlgorithms/C/commit/1d0d7126d3192ef93c48133c05f8a190ad152934) docs: documentation changes - [`32dd3e8`](https://github.com/TheAlgorithms/C/commit/32dd3e81b950ab2684b641acfb3265ac6eab0552) docs: documentation changes - [`8566c2e`](https://github.com/TheAlgorithms/C/commit/8566c2eece7ab575be4ad4280ed3c50aae136253) updating DIRECTORY.md - [`45d92c5`](https://github.com/TheAlgorithms/C/commit/45d92c5cc14969047bcaf64900922d843644569e) docs: documentation changes - [`da1dccf`](https://github.com/TheAlgorithms/C/commit/da1dccf60e743ba1b90061b3d878c9de8d7b9fcb) Merge branch 'expression' of https://github.com/kumaryash18/C into expression - [`b0fa886`](https://github.com/TheAlgorithms/C/commit/b0fa88682951433084c15de3e6d1522ae0f147f5) fix: continuous integration - [`71a7353`](https://github.com/TheAlgorithms/C/commit/71a73531e02fc8881a522d1105faa8b619ebde6a) [test, docs]: add test case, documentation changes - [`6e4f228`](https://github.com/TheAlgorithms/C/commit/6e4f228ba786840e13ebfd8436bdf3efb19aff01) docs: documentation changes - [`9fae7a0`](https://github.com/TheAlgorithms/C/commit/9fae7a02a58ddd7423a02b6f76dbf7ab8120d6fc) fix: continuous integration ### 📊 Changes **2 files changed** (+165 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+1 -0) ➕ `conversions/infix_to_postfix2.c` (+164 -0) </details> ### 📄 Description #### Description of Change Added a program to convert an infix expression to postfix expression in misc <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md --> #### References <!-- Add any reference to previous pull-request or issue --> #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] Added description of change - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] I acknowledge that all my contributions will be made under the project's license. Notes: <!-- Please add a one-line description for developers or pull request viewers --> A program in C to convert an infix expression to postfix expression <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/869"><img src="https://gitpod.io/button/open-in-gitpod.svg"/></a> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:19:54 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1379