Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ Node
Method
Node
CPP/Trees/LowestCommonAncestor.cpp:9–12 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
7
Node *right;
8
9
Node(int val) {
10
data = val;
11
left = right = NULL;
12
}
13
};
14
15
class Solution
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected