mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
fix: suggestions from review
Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
parent
02845fabcc
commit
5c03b36a12
@ -1,9 +1,8 @@
|
|||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
* @brief Infix to Postfix Expression Conversion
|
* @brief [Infix to Postfix](https://condor.depaul.edu/ichu/csc415/notes/notes9/Infix.htm) Expression Conversion
|
||||||
* @details Convert Infixed expressions to Postfix expression.
|
* @details Convert Infixed expressions to Postfix expression.
|
||||||
* @author [Harsh Karande](https://github.com/harshcut)
|
* @author [Harsh Karande](https://github.com/harshcut)
|
||||||
* @see [notes](https://condor.depaul.edu/ichu/csc415/notes/notes9/Infix.htm)
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// include header files
|
// include header files
|
||||||
@ -12,8 +11,8 @@
|
|||||||
// globally declared structure
|
// globally declared structure
|
||||||
struct Stack
|
struct Stack
|
||||||
{
|
{
|
||||||
char arr[10]; // static array of integers
|
char arr[10]; ///> static array of integers
|
||||||
int tos; // stores index on topmost element in stack
|
int tos; ///> stores index on topmost element in stack
|
||||||
};
|
};
|
||||||
|
|
||||||
// function headers
|
// function headers
|
||||||
|
Loading…
Reference in New Issue
Block a user