Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve infix to postfix notation algorithm #772

Merged
merged 11 commits into from
Aug 4, 2024

Commits on Jul 25, 2024

  1. refactor(infix_to_postfix): Move to more appropriate place

    I think that infix to postfix notation algorithm belongs to conversions,
    and certainly not to data structures
    bgdnrvsky committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    6a48ec7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7d245f4 View commit details
    Browse the repository at this point in the history
  3. General code improvement

    No need for the closure to return `i32`, since not only it is never
    negative, but also it will never be as huge to make it a 32 bit
    bgdnrvsky committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    a8cade5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    94a7bd0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    cd8305b View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2024

  1. Configuration menu
    Copy the full SHA
    15976e2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e952c9e View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2024

  1. Configuration menu
    Copy the full SHA
    dc26a9a View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2024

  1. tests: add tests with ^

    vil02 committed Aug 4, 2024
    Configuration menu
    Copy the full SHA
    ae74807 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8698b9f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c61e3af View commit details
    Browse the repository at this point in the history