🌱 add ThreadBiTree

This commit is contained in:
Kim Yang
2020-08-23 05:20:58 +08:00
parent eaf28f09e5
commit 7727e64950
7 changed files with 280 additions and 51 deletions

View File

@@ -62,7 +62,7 @@ bool GetHead(LinkQueue Q, int &x) {
}
bool QueueEmpty(LinkQueue Q) {
return Q.front==Q.rear? true: false;
return Q.front == Q.rear ? true : false;
}
/**实现模块**/