MCPcopy Create free account
hub / github.com/douchuan/algorithm / ZigzagOrderVisitor

Class ZigzagOrderVisitor

src/tree/binary/traverse.rs:91–91  ·  view source on GitHub ↗

Zigzag Level Order Traversal Given a binary tree, return the level order traversal of its nodes’ values. (ie, from left to right, level by level). For example: Given binary tree {3,9,20,#,#,15,7}, 3 / \ 9 20 / \ 15 7 return its zigzag level order traversal as: [ [3], [20, 9], [15, 7] ]

Source from the content-addressed store, hash-verified

89/// [15, 7]
90/// ]
91pub struct ZigzagOrderVisitor;
92
93/// Two elements of a binary search tree (BST) are swapped by mistake.
94/// Recover the tree without changing its structure.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected