I am going to learn Data Structures in C ++, but I suffer from appearance to unfamiliar C ++ syntax, for example:
enum SeatStatus SeaList[Max_Seats];
all I know about using "enum" in C ++ is like:
enum direction{up,right,down,left} ;
To analyze the algorithm, which is implemented in the C ++ programming language, I come across a huge number of unfamiliar codes. Please help me fix this issue. Thanks to the stackoverflow community.
Erfan source
share