From 4f37a67cbda23b26ae5703a739fca870299aaf1a Mon Sep 17 00:00:00 2001 From: Harsh Karande Date: Mon, 19 Oct 2020 10:21:55 +0530 Subject: [PATCH] feat: add source for algorithm explanation --- conversions/infix_to_postfix.c | 1 + 1 file changed, 1 insertion(+) diff --git a/conversions/infix_to_postfix.c b/conversions/infix_to_postfix.c index c8deb197..42c80b54 100644 --- a/conversions/infix_to_postfix.c +++ b/conversions/infix_to_postfix.c @@ -3,6 +3,7 @@ * @brief Infix to Postfix Expression Conversion * @details Convert Infixed expressions to Postfix expression. * @author [Harsh Karande](https://github.com/harshcut) + * @see [notes](https://condor.depaul.edu/ichu/csc415/notes/notes9/Infix.htm) */ // include header files