MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / traverse

Function traverse

CPP/Trees/Expression_tree/BST.c:143–149  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141}
142
143void traverse(EXT tree) {
144 if(tree != NULL) {
145 traverse(tree->left);
146 printf("%c \n", tree->data);
147 traverse(tree->right);
148 }
149}
150
151int compute(EXT tree) {
152 if(tree == NULL)

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected