[PR #611] [MERGED] feat: add infix_to_postfix.c #1059

Closed
opened 2026-01-29 15:17:12 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/611
Author: @ghost
Created: 9/30/2020
Status: Merged
Merged: 2/11/2021
Merged by: @ayaankhan98

Base: masterHead: infix_to_postfix


📝 Commits (10+)

  • d7f0955 feat: add infix_to_postfix.c
  • 66c8f7c fix: checks failed
  • 95b2055 docs: update for infix_to_postfix.c
  • 9464b67 docs: add header file docs
  • cb1632e updating DIRECTORY.md
  • 4f37a67 feat: add source for algorithm explanation
  • c314272 fix: recognize bracket operator
  • 02845fa feat: reviewer commit
  • 5c03b36 fix: suggestions from review
  • b2522d2 docs: update comments

📊 Changes

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

View changed files

📝 DIRECTORY.md (+1 -0)
conversions/infix_to_postfix.c (+227 -0)

📄 Description

Infix to Postfix Conversion

Convert infix expression to postfix expression using stack.

References

Information about infix to postfix conversion can be found here.

Checklist

  • Added description of change.
  • Added file name matches File name guidelines.
  • Relevant documentation/comments is changed or added.
  • PR title follows semantic commit guidelines.
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.


🔄 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/611 **Author:** [@ghost](https://github.com/ghost) **Created:** 9/30/2020 **Status:** ✅ Merged **Merged:** 2/11/2021 **Merged by:** [@ayaankhan98](https://github.com/ayaankhan98) **Base:** `master` ← **Head:** `infix_to_postfix` --- ### 📝 Commits (10+) - [`d7f0955`](https://github.com/TheAlgorithms/C/commit/d7f0955930142d1370cae2f85450a12887bad39c) feat: add infix_to_postfix.c - [`66c8f7c`](https://github.com/TheAlgorithms/C/commit/66c8f7cbec0dddbd48627c64bdcf244e8c7b39ac) fix: checks failed - [`95b2055`](https://github.com/TheAlgorithms/C/commit/95b20556a0599d60284f8374576885d64e8ef5af) docs: update for infix_to_postfix.c - [`9464b67`](https://github.com/TheAlgorithms/C/commit/9464b673faf6b319c308f7afe31d49e54d9205cf) docs: add header file docs - [`cb1632e`](https://github.com/TheAlgorithms/C/commit/cb1632e115eb1ed7553341bc20ba585dc6665be2) updating DIRECTORY.md - [`4f37a67`](https://github.com/TheAlgorithms/C/commit/4f37a67cbda23b26ae5703a739fca870299aaf1a) feat: add source for algorithm explanation - [`c314272`](https://github.com/TheAlgorithms/C/commit/c3142724fba21fa057df47720f40cbe95aaf4e9f) fix: recognize bracket operator - [`02845fa`](https://github.com/TheAlgorithms/C/commit/02845fabccec080e85e4cfd31acbe35f9ce274c3) feat: reviewer commit - [`5c03b36`](https://github.com/TheAlgorithms/C/commit/5c03b36a12043101a4a3204bdde877b11cb5e2f1) fix: suggestions from review - [`b2522d2`](https://github.com/TheAlgorithms/C/commit/b2522d24139a0084217f1758bdfcdd7993bc8bd4) docs: update comments ### 📊 Changes **2 files changed** (+228 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+1 -0) ➕ `conversions/infix_to_postfix.c` (+227 -0) </details> ### 📄 Description #### Infix to Postfix Conversion Convert infix expression to postfix expression using stack. #### References Information about infix to postfix conversion can be found [here](https://condor.depaul.edu/ichu/csc415/notes/notes9/Infix.htm). #### Checklist - [x] Added description of change. - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/CONTRIBUTING.md#New-File-Name-guidelines). - [x] Relevant documentation/comments is changed or added. - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/CONTRIBUTING.md#Commit-Guidelines). - [x] Search previous suggestions before making a new one, as yours may be a duplicate. - [x] I acknowledge that all my contributions will be made under the project's license. <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/611"><img src="https://gitpod.io/api/apps/github/pbs/github.com/harshcut/C.git/fc3bc8bb75e9b809503c8a0042bfedd4eeb9a2ee.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:17:12 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1059