MCPcopy Create free account
hub / github.com/Jensenczx/CodeEveryday / Solution

Class Solution

86_buildSegmetTree.java:14–44  ·  view source on GitHub ↗

Definition of SegmentTreeNode: public class SegmentTreeNode { public int start, end, max; public SegmentTreeNode left, right; public SegmentTreeNode(int start, int end, int max) { this.start = start; this.end = end; this.max = max this.left = this.right =

Source from the content-addressed store, hash-verified

source not stored for this graph (policy: none)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected