mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-22 05:21:49 +03: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
|
||||
* @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.
|
||||
* @author [Harsh Karande](https://github.com/harshcut)
|
||||
* @see [notes](https://condor.depaul.edu/ichu/csc415/notes/notes9/Infix.htm)
|
||||
*/
|
||||
|
||||
// include header files
|
||||
@ -12,8 +11,8 @@
|
||||
// globally declared structure
|
||||
struct Stack
|
||||
{
|
||||
char arr[10]; // static array of integers
|
||||
int tos; // stores index on topmost element in stack
|
||||
char arr[10]; ///> static array of integers
|
||||
int tos; ///> stores index on topmost element in stack
|
||||
};
|
||||
|
||||
// function headers
|
||||
|
Loading…
Reference in New Issue
Block a user