[PR #1219] [MERGED] Add Shunting Yard Algorithm #1812

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1219
Author: @CascadingCascade
Created: 2/21/2023
Status: Merged
Merged: 2/27/2023
Merged by: @Panquesito7

Base: masterHead: shuntingYard


📝 Commits (10+)

📊 Changes

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

View changed files

📝 DIRECTORY.md (+4 -0)
misc/shunting_yard.c (+238 -0)

📄 Description

Description of Change

Add an implementation of the shunting yard algorithm

References

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • 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.

Notes:


🔄 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/1219 **Author:** [@CascadingCascade](https://github.com/CascadingCascade) **Created:** 2/21/2023 **Status:** ✅ Merged **Merged:** 2/27/2023 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `shuntingYard` --- ### 📝 Commits (10+) - [`21537b5`](https://github.com/TheAlgorithms/C/commit/21537b56f954a449ce8a03eeea6863d00bcdda5d) Create shunting_yard.c - [`9204767`](https://github.com/TheAlgorithms/C/commit/9204767d14985798ececbe96b06187ba5213801a) updating DIRECTORY.md - [`19c0057`](https://github.com/TheAlgorithms/C/commit/19c00571ccde5314af50ed3ce7e3ed83c0a078c9) Update shunting_yard.c - [`c7d03b2`](https://github.com/TheAlgorithms/C/commit/c7d03b2029d4a1d38f4dbb382bfcb76c3d978c36) Merge branch 'shuntingYard' of https://github.com/CascadingCascade/C into shuntingYard - [`1db9b66`](https://github.com/TheAlgorithms/C/commit/1db9b662cf0d7a2ac53241ed835bf4e9d0e9e9e4) Update shunting_yard.c - [`fe223d3`](https://github.com/TheAlgorithms/C/commit/fe223d3b589e9ce65311a6dd59c6672fb360c721) Update shunting_yard.c - [`02c55e6`](https://github.com/TheAlgorithms/C/commit/02c55e673df67377be74e596f7b7ed195cbdc6cc) Merge branch 'master' into shuntingYard - [`9b6c0bd`](https://github.com/TheAlgorithms/C/commit/9b6c0bd6419b99d8cec8a5b4765ebd2795fdc302) updating DIRECTORY.md - [`12b4809`](https://github.com/TheAlgorithms/C/commit/12b48098ae2a1d4a2b3c08b45c86b852cff10c03) Merge branch 'master' into shuntingYard - [`62ec7f8`](https://github.com/TheAlgorithms/C/commit/62ec7f8472961ee5ac1336814f361a3360880f00) Update shunting_yard.c ### 📊 Changes **2 files changed** (+242 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+4 -0) ➕ `misc/shunting_yard.c` (+238 -0) </details> ### 📄 Description #### Description of Change Add an implementation of the shunting yard algorithm <!-- 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] 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: <!-- Please add a one-line description for developers or pull request viewers --> --- <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:24:53 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1812