MCPcopy Create free account
hub / github.com/142vip/408CSFamily / StackEmpty

Function StackEmpty

code/ds/SqStack.cpp:18–26  ·  view source on GitHub ↗

栈空判断

Source from the content-addressed store, hash-verified

16
17// 栈空判断
18bool StackEmpty(S){
19 if(S.top==-1){
20 // 栈空
21 return true;
22 }else{
23 // 栈非空
24 return false;
25 }
26}
27
28// 进栈
29bool Push(SqStack &S,ElemType x){

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected