[PR #1313] [CLOSED] Created postfix to infix converter #1912

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1313
Author: @Kavyashah26
Created: 9/30/2023
Status: Closed

Base: masterHead: kavya


📝 Commits (1)

  • 473e9e2 Created postfix to infix converter

📊 Changes

1 file changed (+130 additions, -0 deletions)

View changed files

conversions/postfix_to_infix.c (+130 -0)

📄 Description

Description of Change

This postfix to infix converter converts postfix expression to infix and returns it , if any checks are not passed during conversion it populates relevant message for that. And if this condition doesn't apply it checks output with expected output and if that is wrong it aborts the program.

References

issue no. #1299

Checklist

  • [ X] Added description of change
  • [ X] Added file name matches File name guidelines
  • [X ] Added tests and example, test must pass
  • [ X] Relevant documentation/comments is changed or added
  • [ X] PR title follows semantic 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.

Notes: This postfix to infix converter converts postfix expression to infix and returns it if all the checks are passed , at the end final evaluation of answer happens to check output is correct or not.


🔄 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/1313 **Author:** [@Kavyashah26](https://github.com/Kavyashah26) **Created:** 9/30/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `kavya` --- ### 📝 Commits (1) - [`473e9e2`](https://github.com/TheAlgorithms/C/commit/473e9e2ad83730727db0ce9e57ebed36b2187e22) Created postfix to infix converter ### 📊 Changes **1 file changed** (+130 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `conversions/postfix_to_infix.c` (+130 -0) </details> ### 📄 Description #### Description of Change This postfix to infix converter converts postfix expression to infix and returns it , if any checks are not passed during conversion it populates relevant message for that. And if this condition doesn't apply it checks output with expected output and if that is wrong it aborts the program. #### References issue no. #1299 #### Checklist - [ 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 ] Added tests and example, test must pass - [ X] Relevant documentation/comments is changed or added - [ X] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/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. Notes: This postfix to infix converter converts postfix expression to infix and returns it if all the checks are passed , at the end final evaluation of answer happens to check output is correct or not. --- <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:26:07 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1912