TheAlgorithms-C/conversions
Kumar Yash 654105c8ef
feat: add infix to postfix converter algorithm (#869)
* add infix to postfix converter algorithm

* docs: documentation changes

* docs: documentation changes

* updating DIRECTORY.md

* docs: documentation changes

* fix: continuous integration

* [test, docs]: add test case, documentation changes

* docs: documentation changes

* fix: continuous integration

* docs: documentation changes

* docs: documentation changes

* test: add new test

Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
2021-10-16 19:27:11 -05:00
..
binary_to_decimal.c
binary_to_hexadecimal.c
binary_to_octal.c
c_atoi_str_to_integer.c fixed precision commit. was assert-fail on negative numbers. 2021-02-28 01:07:53 +03:00
CMakeLists.txt
decimal_to_any_base.c feat: Add conversion/decimal_to_anybase.c algorithm (#872) 2021-10-13 14:30:24 -05:00
decimal_to_binary_recursion.c
decimal_to_binary.c
decimal_to_hexa.c
decimal_to_octal_recursion.c
decimal_to_octal.c
hexadecimal_to_octal2.c
hexadecimal_to_octal.c
infix_to_postfix2.c feat: add infix to postfix converter algorithm (#869) 2021-10-16 19:27:11 -05:00
infix_to_postfix.c
int_to_string.c
octal_to_binary.c
octal_to_decimal.c
octal_to_hexadecimal.c
to_decimal.c