Data-Structure icon indicating copy to clipboard operation
Data-Structure copied to clipboard

dev C++ ExerciseBook 代码3.16 127行

Open WuXiao90 opened this issue 4 years ago • 0 comments

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

WuXiao90 avatar Oct 22 '21 00:10 WuXiao90