Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/LFYSec/MScan
/ isRed
Method
isRed
src/test/resources/pta/basic/RedBlackBST.java:28–31 ·
view source on GitHub ↗
(Node x)
Source
from the content-addressed store, hash-verified
26
}
27
28
private
boolean isRed(Node x) {
29
if
(x == null)
return
false;
30
return
x.color == RED;
31
}
32
33
private
int
size(Node x) {
34
if
(x == null)
return
0;
Callers
9
put
Method · 0.95
deleteMin
Method · 0.95
deleteMax
Method · 0.95
delete
Method · 0.95
moveRedLeft
Method · 0.95
moveRedRight
Method · 0.95
balance
Method · 0.95
is23
Method · 0.95
isBalanced
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected