Documentation ¶ Index ¶ Variables type ListNode type Node func ReconstructBinTree(inorder, preorder []Node) *Node Constants ¶ This section is empty. Variables ¶ View Source var ( MaxNode = &ListNode{ Val: math.MaxInt64, Next: nil, } ) Functions ¶ This section is empty. Types ¶ type ListNode ¶ type ListNode struct { Val int Next *ListNode } type Node ¶ type Node struct { Key int // contains filtered or unexported fields } func ReconstructBinTree ¶ func ReconstructBinTree(inorder, preorder []Node) *Node ReconstructBinTree - Source Files ¶ View all Source files bst2list.gobstKthNode.gofindSingle.goleetcode_25.gomergeKSortedList.goqueue.goreconstruct.gotraversal.go Directories ¶ Show internal Expand all Path Synopsis bin-tree-path-of-sum entrynode linkedlistraverse p1toNDigt power regexp repeatnumber topk two-d-array-lookup Click to show internal directories. Click to hide internal directories.