Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dev C++ ExerciseBook 代码3.16 127行 #33

Open
WuXiao90 opened this issue Oct 22, 2021 · 0 comments
Open

dev C++ ExerciseBook 代码3.16 127行 #33

WuXiao90 opened this issue Oct 22, 2021 · 0 comments
Labels
BUG 代码出现异常

Comments

@WuXiao90
Copy link

// 如果调度序列为空,但是入口处存在未调度的车厢,或者中转栈里存在未处理的车厢,则表示发生错误
if(seq[k] == '\0' && (En[i] || StackEmpty(S)))
是不是应该是
if(seq[k] == '\0' && (En[i] || !StackEmpty(S)))

@kangjianwei kangjianwei added the BUG 代码出现异常 label Mar 26, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
BUG 代码出现异常
Projects
None yet
Development

No branches or pull requests

2 participants